##// END OF EJS Templates
ui: fixed missing requirements page after summary page changes
marcink -
r3643:bd138857 new-ui
parent child Browse files
Show More
@@ -1,31 +1,30 b''
1 1 <%inherit file="/summary/summary_base.mako"/>
2 2
3 3 <%namespace name="components" file="/summary/components.mako"/>
4 4
5 5 <%def name="main()">
6 6
7 7 <div id="repo-summary" class="summary">
8 8 ${components.summary_detail(breadcrumbs_links=self.breadcrumbs_links(), show_downloads=False)}
9 ${components.summary_stats(gravatar_function=self.gravatar_with_user)}
10 9 </div><!--end repo-summary-->
11 10
12 11 <div class="alert alert-dismissable alert-warning">
13 12 <strong>Missing requirements</strong>
14 13 Commits cannot be displayed, because this repository uses one or more extensions, which was not enabled. <br/>
15 14 Please <a href="${h.route_path('edit_repo_vcs', repo_name=c.repo_name)}">enable extension in settings</a>, or contact the repository owner for help.
16 15 Missing extensions could be:
17 16 <pre>
18 17
19 18 - Mercurial largefiles
20 19 - Git LFS
21 20 </pre>
22 21 <br/>
23 22 Requirement error: ${c.repository_requirements_missing.get('error')}
24 23 </div>
25 24
26 25 </%def>
27 26
28 27
29 28 <%def name="menu_bar_subnav()">
30 29 ${self.repo_menu(active='summary')}
31 30 </%def>
General Comments 0
You need to be logged in to leave comments. Login now