diff --git a/rhodecode/templates/forks/fork.html b/rhodecode/templates/forks/fork.html --- a/rhodecode/templates/forks/fork.html +++ b/rhodecode/templates/forks/fork.html @@ -2,7 +2,10 @@ <%inherit file="/base/base.html"/> <%def name="title()"> - ${_('%s Fork') % c.repo_name} · ${c.rhodecode_name} + ${_('Fork repository %s') % c.repo_name} + %if c.rhodecode_name: + · ${c.rhodecode_name} + %endif <%def name="breadcrumbs_links()"> @@ -12,17 +15,16 @@ <%def name="page_nav()"> ${self.menu('repositories')} + <%def name="main()"> -${self.repo_context_bar('showforks')} +${self.repo_context_bar('createfork')}
-
- ${self.breadcrumbs()} -
${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}
+
@@ -33,6 +35,27 @@ ${self.repo_context_bar('showforks')} ${h.hidden('fork_parent_id',c.repo_info.repo_id)}
+ +
+
+ +
+
+ ${h.textarea('description')} + ${_('Keep it short and to the point. Use a README file for longer descriptions.')} +
+
+ +
+
+ +
+
+ ${h.select('repo_group','',c.repo_groups,class_="medium")} + ${_('Optionaly select a group to put this repository into.')} +
+
+
@@ -42,24 +65,7 @@ ${self.repo_context_bar('showforks')} ${_('Default revision for files page, downloads, whoosh and readme')}
-
-
- -
-
- ${h.select('repo_group','',c.repo_groups,class_="medium")} - ${_('Optionaly select a group to put this repository into.')} -
-
-
-
- -
-
- ${h.textarea('description',cols=23,rows=5)} - ${_('Keep it short and to the point. Use a README file for longer descriptions.')} -
-
+
@@ -90,10 +96,21 @@ ${self.repo_context_bar('showforks')}
%endif
- ${h.submit('',_('Fork this repository'),class_="ui-btn large")} + ${h.submit('',_('Fork this Repository'),class_="btn")}
${h.end_form()}
+