##// END OF EJS Templates
repositories: allow updating repository settings for users without store-in-root permissions...
repositories: allow updating repository settings for users without store-in-root permissions in case repository name didn't change. - when an user owns repository in root location, and isn't allow to create repositories in root before we failed to allow this user to update such repository settings due to this validation. We'll now check if name didn't change and in this case allow to update since this doesn't store any new data in root location.

File last commit:

r3810:d0cfe4e5 stable
r4415:fc1f6c1b default
Show More
summary_base.mako
28 lines | 926 B | application/x-mako | MakoHtmlLexer
templates: rename base.mako into summary_base.mako. The previous naming...
r2178 <%inherit file="/base/base.mako"/>
<%def name="title()">
## represents page title
rss: use permalinks without slashes for feeds. Fixes #5557
r3810 ${_('{} Summary').format(c.repo_name)}
templates: rename base.mako into summary_base.mako. The previous naming...
r2178 %if c.rhodecode_name:
&middot; ${h.branding(c.rhodecode_name)}
%endif
</%def>
<%def name="head_extra()">
rss: use permalinks without slashes for feeds. Fixes #5557
r3810 <link href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s ATOM feed') % c.repo_name)}" type="application/atom+xml" />
<link href="${h.route_path('rss_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s RSS feed') % c.repo_name)}" type="application/rss+xml" />
templates: rename base.mako into summary_base.mako. The previous naming...
r2178 </%def>
<%def name="menu_bar_nav()">
${self.menu_items(active='repositories')}
</%def>
nav: bring back quick filter and cleanup titles
r3589 <%def name="breadcrumbs_links()"></%def>
templates: rename base.mako into summary_base.mako. The previous naming...
r2178
<%def name="main()">
${next.main()}
</%def>