##// END OF EJS Templates
Update LICENSE.md to include license information about Codemirror 3.15...
Update LICENSE.md to include license information about Codemirror 3.15 Add information to the LICENSE.md file to include the information provided in the codemirror-3.15/LICENSE file. Also, note that other license and copyright information also appears in .../public/js/mode/ sub-directories.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4121:8c543e37 rhodecode-2.2.5-gpl
Show More
repo_edit.html
71 lines | 2.6 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
Mads Kiilerich
repository: cleanup and alignment of repository editing templates...
r3600 ##
## See also repo_settings.html
##
renamed project to rhodecode
r547 <%inherit file="/base/base.html"/>
<%def name="title()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${_('%s repository settings') % c.repo_info.repo_name}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
repo edit UI improvements
r3562 ${_('Settings')}
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${self.menu('repositories')}
renamed project to rhodecode
r547 </%def>
<%def name="main()">
Mads Kiilerich
templates: drop context_bar, use repo_context_bar directly
r3988 ${self.repo_context_bar('options')}
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 <div class="box">
<!--<div class="title">-->
<!--${self.breadcrumbs()}-->
<!--</div>-->
White-space cleanup
r1888
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ##main
<div style="width: 150px; float:left">
<ul class="nav nav-pills nav-stacked">
<!--<li>-->
<!--<div class="gravatar_box" style="height: 26px">-->
<!--<div class="gravatar" style="float: left">-->
<!--<i class="icon-group" style="font-size: 26px"></i>-->
<!--</div>-->
<!--<div style="margin:10px 0px 10px 0px; color:#5f5f5f; float:left">-->
<!--<strong>${'repo-info'}</strong>-->
<!--</div>-->
<!--</div>-->
<!--</li>-->
<li class="${'active' if c.active=='settings' else ''}">
<a href="${h.url('edit_repo', repo_name=c.repo_name)}">${_('Settings')}</a>
</li>
<li class="${'active' if c.active=='permissions' else ''}">
<a href="${h.url('edit_repo_perms', repo_name=c.repo_name)}">${_('Permissions')}</a>
</li>
<li class="${'active' if c.active=='advanced' else ''}">
<a href="${h.url('edit_repo_advanced', repo_name=c.repo_name)}">${_('Advanced')}</a>
</li>
<li class="${'active' if c.active=='fields' else ''}">
<a href="${h.url('edit_repo_fields', repo_name=c.repo_name)}">${_('Extra fields')}</a>
</li>
<li class="${'active' if c.active=='caches' else ''}">
<a href="${h.url('edit_repo_caches', repo_name=c.repo_name)}">${_('Caches')}</a>
</li>
<li class="${'active' if c.active=='remote' else ''}">
<a href="${h.url('edit_repo_remote', repo_name=c.repo_name)}">${_('Remote')}</a>
</li>
<li class="${'active' if c.active=='statistics' else ''}">
<a href="${h.url('edit_repo_statistics', repo_name=c.repo_name)}">${_('Statistics')}</a>
</li>
</ul>
Code refactor for auth func, preparing for ldap support...
r699 </div>
White-space cleanup
r1888
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 <div style="width:750px; float:left; padding: 10px 0px 0px 20px;margin: 0px 0px 0px 10px; border-left: 1px solid #DDDDDD">
<%include file="/admin/repos/repo_edit_${c.active}.html"/>
Mads Kiilerich
repository: cleanup and alignment of repository editing templates...
r3600 </div>
Code refactor for auth func, preparing for ldap support...
r699 </div>
White-space cleanup
r1888 </%def>