# HG changeset patch # User Mads Kiilerich # Date 2014-07-18 19:22:01 # Node ID 2ddd4fb23b4e4c5aff338df1d58241cb6379d35a # Parent 04717653fe4812eb4c775b6ed8271bf29a4b1721 changelog: fix input line above the list - button size and floating diff --git a/kallithea/templates/changelog/changelog.html b/kallithea/templates/changelog/changelog.html --- a/kallithea/templates/changelog/changelog.html +++ b/kallithea/templates/changelog/changelog.html @@ -40,12 +40,21 @@ ${self.repo_context_bar('changelog', c.f
-
${h.select('branch_filter',c.branch_name,c.branch_filters)}
-
- - +
+ ${h.form(h.url.current(),method='get')} + ${h.submit('set',_('Show'),class_="btn btn-small")} + ${h.text('size',size=1,value=c.size)} + ${_('revisions')} + %if c.branch_name: + ${h.hidden('branch', c.branch_name)} + %endif + ${h.end_form()} +
+
+ + %if c.revision: - + ${_('Go to tip of repository')} %endif @@ -53,19 +62,12 @@ ${self.repo_context_bar('changelog', c.f ${_('Compare fork with parent repo (%s)' % c.db_repo.fork.repo_name)} + class="btn btn-small"> ${_('Compare fork with parent repo (%s)' % c.db_repo.fork.repo_name)} %endif ## text and href of open_new_pr is controlled from javascript - -
- - ${h.form(h.url.current(),method='get')} -
- ${h.submit('set',_('Show'),class_="btn btn-mini")} - ${h.text('size',size=1,value=c.size)} - ${_('revisions')} -
- ${h.end_form()} + + ${h.select('branch_filter',c.branch_name,c.branch_filters)} +