Files @ e61a656b44bd
Branch filter:

Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups_show.html - annotation

Mads Kiilerich
html: move "Submit a bug" to make it more clear that it is for RhodeCode, not the repo

RhodeCode _could_ contain a bug tracker and this link _could_ be for filing
bugs for the hosted projects.

Moving the link to the RhodeCode info makes it more clear that it is for
RhodeCode bugs.

The server instance is however something local, not directly related to the
upstream.
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Repository groups administration')} &middot; ${c.rhodecode_name}
</%def>


<%def name="breadcrumbs_links()">
    %if h.HasPermissionAny('hg.admin')():
        ${h.link_to(_('Admin'),h.url('admin_home'))}
    %else:
        ${_('Admin')}
    %endif
    &raquo;
    ${_('Repository groups')}
</%def>

<%def name="page_nav()">
    ${self.menu('admin')}
</%def>

<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
        <ul class="links">
          <li>
            %if h.HasPermissionAny('hg.admin')():
             <span>${h.link_to(_(u'Add group'),h.url('new_repos_group'))}</span>
            %endif
          </li>
        </ul>
    </div>
    <!-- end box / title -->
    <div class="table">
           % if c.groups:
            <table class="table_disp">

                <thead>
                    <tr>
                        <th class="left"><a href="#">${_('Group name')}</a></th>
                        <th class="left"><a href="#">${_('Description')}</a></th>
                        <th class="left"><a href="#">${_('Number of toplevel repositories')}</a></th>
                        <th class="left" colspan="2">${_('Action')}</th>
                    </tr>
                </thead>

                ## REPO GROUPS

                % for gr in c.groups:
                    <% gr_cn = gr.repositories.count() %>
                  <tr>
                      <td>
                          <div style="white-space: nowrap">
                          <img class="icon" alt="${_('Repository group')}" src="${h.url('/images/icons/database_link.png')}"/>
                          ${h.link_to(h.literal(' &raquo; '.join(map(h.safe_unicode,[g.name for g in gr.parents+[gr]]))), url('repos_group_home',group_name=gr.group_name))}
                          </div>
                      </td>
                      <td>${gr.group_description}</td>
                      <td><b>${gr_cn}</b></td>
                      <td>
                       <a href="${h.url('edit_repos_group',group_name=gr.group_name)}" title="${_('Edit')}">
                         ${h.submit('edit_%s' % gr.group_name,_('edit'),class_="edit_icon action_button")}
                       </a>
                      </td>
                      <td>
                       ${h.form(url('repos_group', group_name=gr.group_name),method='delete')}
                         ${h.submit('remove_%s' % gr.name,_('delete'),class_="delete_icon action_button",onclick="return confirm('"+ungettext('Confirm to delete this group: %s with %s repository','Confirm to delete this group: %s with %s repositories',gr_cn) % (gr.name,gr_cn)+"');")}
                       ${h.end_form()}
                      </td>
                  </tr>
                % endfor

            </table>
            % else:
                ${_('There are no repository groups yet')}
            % endif

    </div>
</div>

</%def>