## TYPE OF REPO
%if repo['dbrepo']['repo_type'] =='hg':
%elif repo['dbrepo']['repo_type'] =='git':
%else:
%endif
## PRIVATE/PUBLIC REPO
%if repo['dbrepo']['private']:
%else:
%endif
${h.link_to(repo['name'],h.url('edit_repo',repo_name=repo['name']))}
%if repo['dbrepo_fork']:
%endif
|
${h.truncate(repo['description'],60)} |
${h.age(repo['last_change'])} |
%if repo['rev']>=0:
${h.link_to('r%s:%s' % (repo['rev'],h.short_id(repo['tip'])),
h.url('changeset_home',repo_name=repo['name'],revision=repo['tip']),
class_="tooltip",
title=h.tooltip(repo['last_msg']))}
%else:
${_('No changesets yet')}
%endif
|
${h.person(repo['contact'])} |
${h.form(url('repo', repo_name=repo['name']),method='delete')}
${h.submit('remove_%s' % repo['name'],_('delete'),class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this repository')+"');")}
${h.end_form()}
|
%endfor