Files
@ 9dd726706178
Branch filter:
Location: kallithea/rhodecode/templates/admin/repos/repo_edit.html - annotation
9dd726706178
2.6 KiB
text/html
Complete copyright notices for web interface; change footer to link to them.
The original copyright notice found in the footer was not accurate as it
included only one of the many copyright holders in this project. This change
creates an "about" page, which currently contains just the copyright and
license information. It links to repository for additional potential copyright
holders not listed on the about page.
Unlisted contributors are mentioned in template comments.
Html links for Kallithea is fixed and we link to Conservancy.
Display of version information in the footer is improved.
The original copyright notice found in the footer was not accurate as it
included only one of the many copyright holders in this project. This change
creates an "about" page, which currently contains just the copyright and
license information. It links to repository for additional potential copyright
holders not listed on the about page.
Unlisted contributors are mentioned in template comments.
Html links for Kallithea is fixed and we link to Conservancy.
Display of version information in the footer is improved.
1e757ac98988 727119201a42 727119201a42 727119201a42 1e757ac98988 1e757ac98988 1e757ac98988 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 1e757ac98988 1e757ac98988 1e757ac98988 b2728f47b589 1e757ac98988 1e757ac98988 1e757ac98988 ffd45b185016 1e757ac98988 1e757ac98988 1e757ac98988 072a37c44f58 9af9953a3159 ffd45b185016 ffd45b185016 ffd45b185016 f91d3f9b7230 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 52da7cba88a6 f91d3f9b7230 ffd45b185016 ffd45b185016 727119201a42 52da7cba88a6 52da7cba88a6 f91d3f9b7230 | ## -*- coding: utf-8 -*-
##
## See also repo_settings.html
##
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s repository settings') % c.repo_info.repo_name}
%if c.rhodecode_name:
· ${c.rhodecode_name}
%endif
</%def>
<%def name="breadcrumbs_links()">
${_('Settings')}
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
${self.repo_context_bar('options')}
<div class="box" style="overflow:auto">
<!--<div class="title">-->
<!--${self.breadcrumbs()}-->
<!--</div>-->
##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>
</div>
<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"/>
</div>
</div>
</%def>
|