## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${_('Journal')} - ${c.rhodecode_name} <%def name="breadcrumbs()"> ${c.rhodecode_name} <%def name="page_nav()"> ${self.menu('home')} <%def name="main()">
${_('Journal')}
${c.journal_data}
${_('My repositories')} / ${_('Watched')}
%if h.HasPermissionAny('hg.admin','hg.create.repository')(): %endif
%if c.user_repos: %for repo in c.user_repos: %endfor
${_('Name')} ${_('revision')} ${_('action')}
%if repo['dbrepo']['repo_type'] =='hg': ${_('Mercurial repository')} %elif repo['dbrepo']['repo_type'] =='git': ${_('Git repository')} %else: %endif %if repo['dbrepo']['private']: ${_('private')} %else: ${_('public')} %endif ${h.link_to(repo['name'], h.url('summary_home',repo_name=repo['name']),class_="repo_name")} %if repo['dbrepo_fork']: ${_('public')} %endif ${("r%s:%s") % (repo['rev'],h.short_id(repo['tip']))} ${_('private')} ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')} ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")} ${h.end_form()}
%else:
${_('No repositories yet')} %if h.HasPermissionAny('hg.admin','hg.create.repository')(): ${h.link_to(_('create one now'),h.url('admin_settings_create_repository'),class_="ui-btn")} %endif
%endif