diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html
index f2b7f09..24b84a4 100644
--- a/progit/templates/repo_info.html
+++ b/progit/templates/repo_info.html
@@ -147,26 +147,36 @@
Git URLs |
|
|
+ |
Project |
: |
- {{ config.get('GIT_URL') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git
+ {{ config.get('GIT_URL_SSH') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git
+ |
+
+ {{ config.get('GIT_URL_GIT') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git
|
Docs |
: |
- {{ config.get('GIT_URL') }}:docs/{{ repo.fullname }}.git
+ {{ config.get('GIT_URL_SSH') }}:docs/{{ repo.fullname }}.git
+ |
+
+ {{ config.get('GIT_URL_GIT') }}:docs/{{ repo.fullname }}.git
|
Tickets |
: |
- {{ config.get('GIT_URL') }}:ticket/{{ repo.fullname }}.git
+ {{ config.get('GIT_URL_SSH') }}:ticket/{{ repo.fullname }}.git
+ |
+
+ {{ config.get('GIT_URL_GIT') }}:tickets/{{ repo.fullname }}.git
|