##// END OF EJS Templates
diffs: compare overhaul....
diffs: compare overhaul. - made compare and commit range pages more consistent with other commit diff pages - removed mergerly, closes #4665. Old diff2way is replaced by new diffs with side-by-side mode. - cleanup button behaviour on compare page. Added help text and generally improved UX - switched file-diffs to compare page with file filter. Part of #4000 - added collapse/expand commits buttons in compare views.

File last commit:

r1:854a839a default
r1259:8e9f93ec default
Show More
missing_requirements.html
26 lines | 939 B | text/html | HtmlLexer
<%inherit file="/summary/base.html"/>
<%namespace name="components" file="/summary/components.html"/>
<%def name="main()">
<div class="title">
${self.repo_page_title(c.rhodecode_db_repo)}
</div>
<div id="repo-summary" class="summary">
${components.summary_detail(breadcrumbs_links=self.breadcrumbs_links(), show_downloads=False)}
${components.summary_stats(gravatar_function=self.gravatar_with_user)}
</div><!--end repo-summary-->
<div class="alert alert-dismissable alert-warning">
<strong>Missing requirements</strong>
These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled.
Please <a href="${h.url('repo_vcs_settings', repo_name=c.repo_name)}">enable this extension in settings</a>, or contact the repository owner for help.
</div>
</%def>
<%def name="menu_bar_subnav()">
${self.repo_menu(active='summary')}
</%def>