diff --git a/rhodecode/templates/changelog/changelog.html b/rhodecode/templates/changelog/changelog.html --- a/rhodecode/templates/changelog/changelog.html +++ b/rhodecode/templates/changelog/changelog.html @@ -25,26 +25,28 @@ ${self.context_bar('changelog')}
% if c.pagination:
-
- - +
+
+ + - %if c.rhodecode_db_repo.fork: - ${_('Compare fork with parent')} - %endif - %if h.is_hg(c.rhodecode_repo): - ${_('Open new pull request')} - %endif -
-
- ${h.form(h.url.current(),method='get')} -
- ${h.submit('set',_('Show'),class_="ui-btn")} - ${h.text('size',size=1,value=c.size)} - ${_('revisions')} + %if c.rhodecode_db_repo.fork: + ${_('Compare fork with parent')} + %endif + %if h.is_hg(c.rhodecode_repo): + ${_('Open new pull request')} + %endif
- ${h.end_form()} -
${h.select('branch_filter',c.branch_name,c.branch_filters)}
+
+ ${h.form(h.url.current(),method='get')} +
+ ${h.submit('set',_('Show'),class_="ui-btn")} + ${h.text('size',size=1,value=c.size)} + ${_('revisions')} +
+ ${h.end_form()} +
${h.select('branch_filter',c.branch_name,c.branch_filters)}
+
@@ -56,7 +58,11 @@ ${self.context_bar('changelog')} %for cnt,cs in enumerate(c.pagination): - ${h.checkbox(cs.raw_id,class_="changeset_range")} + %if c.changelog_for_path: + ${h.checkbox(cs.raw_id,class_="changeset_range", disabled="disabled")} + %else: + ${h.checkbox(cs.raw_id,class_="changeset_range")} + %endif %if c.statuses.get(cs.raw_id):