diff --git a/rhodecode/templates/admin/repos/repo_edit.html b/rhodecode/templates/admin/repos/repo_edit.html
--- a/rhodecode/templates/admin/repos/repo_edit.html
+++ b/rhodecode/templates/admin/repos/repo_edit.html
@@ -1,4 +1,7 @@
## -*- coding: utf-8 -*-
+##
+## See also repo_settings.html
+##
<%inherit file="/base/base.html"/>
<%def name="title()">
@@ -152,13 +155,13 @@ ${self.context_bar('options')}
<%include file="repo_edit_perms.html"/>
+
-
- ${h.submit('save',_('Save'),class_="ui-btn large")}
- ${h.reset('reset',_('Reset'),class_="ui-btn large")}
-
+
+ ${h.submit('save',_('Save'),class_="ui-btn large")}
+ ${h.reset('reset',_('Reset'),class_="ui-btn large")}
-
+
${h.end_form()}
@@ -168,143 +171,148 @@ ${self.context_bar('options')}
${_('Advanced settings')}
- ${_('Statistics')}
- ${h.form(url('repo_stats', repo_name=c.repo_info.repo_name),method='delete')}
-
- ${h.end_form()}
-
- %if c.repo_info.clone_uri:
- ${_('Remote')}
- ${h.form(url('repo_pull', repo_name=c.repo_info.repo_name),method='put')}
-
- ${h.end_form()}
- %endif
-
- ${_('Cache')}
- ${h.form(url('repo_cache', repo_name=c.repo_info.repo_name),method='delete')}
-
- ${h.end_form()}
-
- ${_('Public journal')}
- ${h.form(url('repo_public_journal', repo_name=c.repo_info.repo_name),method='put')}
-
- ${h.end_form()}
-
- ${_('Locking')}
- ${h.form(url('repo_locking', repo_name=c.repo_info.repo_name),method='put')}
-
+ ${h.end_form()}
+ %endif
+
+ ${_('Cache')}
+ ${h.form(url('repo_cache', repo_name=c.repo_info.repo_name),method='delete')}
+
+ ${h.end_form()}
- ${_('Set as fork of')}
- ${h.form(url('repo_as_fork', repo_name=c.repo_info.repo_name),method='put')}
-
- ${h.end_form()}
+ ${_('Public journal')}
+ ${h.form(url('repo_public_journal', repo_name=c.repo_info.repo_name),method='put')}
+
+ ${h.end_form()}
- ${_('Delete')}
- ${h.form(url('repo', repo_name=c.repo_info.repo_name),method='delete')}
-
##TODO: this should be controlled by the VISUAL setting