##// END OF EJS Templates
Complete copyright notices for web interface; change footer to link to them....
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.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4178:9dd72670 kallithea-2.2.5-r...
Show More
repo_group_edit_advanced.html
27 lines | 1.2 KiB | text/html | HtmlLexer
<div style="font-size: 24px; color: #666666; padding: 0px 0px 10px 0px">${_('Repository Group: %s') % c.repo_group.group_name}</div>
<dl class="dl-horizontal">
<%
elems = [
(_('Top level repositories'), c.repo_group.repositories.count(), ''),
(_('Total repositories'), c.repo_group.repositories_recursive_count, ''),
(_('Children groups'), c.repo_group.children.count(), ''),
(_('Created on'), h.fmt_date(c.repo_group.created_on), ''),
(_('Owner'), h.person(c.repo_group.user.username), ''),
]
%>
%for dt, dd, tt in elems:
<dt style="width:150px; text-align: left">${dt}:</dt>
<dd style="margin-left: 160px" title="${tt}">${dd}</dd>
%endfor
</dl>
${h.form(h.url('repos_group', group_name=c.repo_group.group_name),method='delete')}
<button class="btn btn-small btn-danger" type="submit"
onclick="return confirm('${ungettext('Confirm to delete this group: %s with %s repository',
'Confirm to delete this group: %s with %s repositories',
c.repo_group.repositories_recursive_count) % (c.repo_group.group_name, c.repo_group.repositories_recursive_count)}');">
<i class="icon-remove-sign"></i>
${_('Delete this repository group')}
</button>
${h.end_form()}