diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html new file mode 100644 --- /dev/null +++ b/rhodecode/templates/index_base.html @@ -0,0 +1,226 @@ +<%page args="parent" /> +
+ +
+
+ + ${parent.breadcrumbs()} ${_('repositories')} +
+ %if c.rhodecode_user.username != 'default': + %if h.HasPermissionAny('hg.admin','hg.create.repository')(): + + %endif + %endif +
+ +
+ % if c.groups: + + + + + + ## + + + + ## REPO GROUPS + + % for gr in c.groups: + + + + ## + + % endfor + +
${_('Group name')}${_('Description')}${_('Number of repositories')}
+
+ ${_('Repositories group')} + ${h.link_to(gr.group_name,url('repos_group',id=gr.group_id))} +
+
${gr.group_description}${gr.repositories.count()}
+
+ % endif + + + + + + + + + + + + + + + + %for cnt,repo in enumerate(c.repos_list): + + + + ##DESCRIPTION + + ##LAST CHANGE + + + + + + + %endfor + +
${_('Name')}${_('Description')}${_('Last change')}${_('Tip')}${_('Owner')}${_('RSS')}${_('Atom')}
+ + + ## TYPE OF REPO +
+ %if repo['dbrepo']['repo_type'] =='hg': + ${_('Mercurial repository')} + %elif repo['dbrepo']['repo_type'] =='git': + ${_('Git repository')} + %endif + + ##PRIVATE/PUBLIC + %if repo['dbrepo']['private']: + ${_('private repository')} + %else: + ${_('public repository')} + %endif + + ##NAME + ${h.link_to(repo['name'], + h.url('summary_home',repo_name=repo['name']),class_="repo_name")} + %if repo['dbrepo_fork']: + + ${_('fork')} + %endif +
+
+ ${h.truncate(repo['description'],60)} + + + ${h.age(repo['last_change'])} + + %if repo['rev']>=0: + ${'r%s:%s' % (repo['rev'],h.short_id(repo['tip']))} + %else: + ${_('No changesets yet')} + %endif + ${h.person(repo['contact'])} + %if c.rhodecode_user.username != 'default': + + %else: + + %endif: + + %if c.rhodecode_user.username != 'default': + + %else: + + %endif: +
+
+
+ + +