diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -185,6 +185,13 @@ div.options a { border-bottom-right-radius: 8px; } +.help-block { + color: #999999; + display: block; + margin-bottom: 0; + margin-top: 5px; +} + #header { margin: 0; padding: 0 10px; @@ -2799,7 +2806,7 @@ table.code-browser .browser-dir { } .ac .perm_ac { - width: 15em; + width: 20em; } .ac .yui-ac-input { diff --git a/rhodecode/templates/admin/repos/repo_add_base.html b/rhodecode/templates/admin/repos/repo_add_base.html --- a/rhodecode/templates/admin/repos/repo_add_base.html +++ b/rhodecode/templates/admin/repos/repo_add_base.html @@ -21,6 +21,7 @@
${h.text('clone_uri',class_="small")} + ${_('Optional http[s] url from which repository should be cloned.')}
@@ -29,6 +30,7 @@
${h.select('repo_group','',c.repo_groups,class_="medium")} + ${_('Optional select a group to put this repository into.')}
@@ -37,6 +39,7 @@
${h.select('repo_type','hg',c.backends,class_="small")} + ${_('Type of repository to create.')}
@@ -44,15 +47,17 @@
- ${h.textarea('description',cols=23,rows=5)} + ${h.textarea('description')} + ${_('Keep it short and to the point. Use a README file for longer descriptions.')}
- +
${h.checkbox('private',value="True")} + ${_('Private repositories are only visible to people explicitly added as collaborators.')}
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 @@ -41,6 +41,7 @@
${h.text('clone_uri',class_="medium")} + ${_('Optional http[s] url from which repository should be cloned.')}
@@ -49,6 +50,7 @@
${h.select('repo_group','',c.repo_groups,class_="medium")} + ${_('Optional select a group to put this repository into.')}
@@ -64,16 +66,18 @@
- ${h.textarea('description',cols=23,rows=5)} + ${h.textarea('description')} + ${_('Keep it short and to the point. Use a README file for longer descriptions.')}
- +
${h.checkbox('private',value="True")} + ${_('Private repositories are only visible to people explicitly added as collaborators.')}
@@ -82,6 +86,7 @@
${h.checkbox('enable_statistics',value="True")} + ${_('Enable statistics window on summary page.')}
@@ -90,15 +95,17 @@
${h.checkbox('enable_downloads',value="True")} + ${_('Enable download menu on summary page.')}
-
+
${h.text('user',class_='yui-ac-input')} + ${_('Change owner of this repository.')}
diff --git a/rhodecode/templates/settings/repo_settings.html b/rhodecode/templates/settings/repo_settings.html --- a/rhodecode/templates/settings/repo_settings.html +++ b/rhodecode/templates/settings/repo_settings.html @@ -34,12 +34,22 @@ ${h.text('repo_name',class_="small")}
+
+
+ +
+
+ ${h.text('clone_uri',class_="medium")} + ${_('Optional http[s] url from which repository should be cloned.')} +
+
${h.select('repo_group','',c.repo_groups,class_="medium")} + ${_('Optional select a group to put this repository into.')}
@@ -47,16 +57,18 @@
- ${h.textarea('description',cols=23,rows=5)} + ${h.textarea('description')} + ${_('Keep it short and to the point. Use a README file for longer descriptions.')}
- +
${h.checkbox('private',value="True")} + ${_('Private repositories are only visible to people explicitly added as collaborators.')}