## -*- 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="head_extra()"> <%def name="main()">
${_('Journal')}
${c.journal_data}
${_('Watched')} / ${_('My repos')}
%if h.HasPermissionAny('hg.admin','hg.create.repository')(): %endif
%if c.following: %for entry in c.following: %endfor
${_('Name')}
%if entry.follows_user_id: ${_('user')} ${entry.follows_user.full_contact} %endif %if entry.follows_repo_id:
%if h.is_hg(entry.follows_repository): ${_('Mercurial repository')} %elif h.is_git(entry.follows_repository): ${_('Git repository')} %endif %if entry.follows_repository.private and c.visual.show_private_icon: ${_('private repository')} %elif not entry.follows_repository.private and c.visual.show_public_icon: ${_('public repository')} %endif ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home',repo_name=entry.follows_repository.repo_name))} %endif
%else:
${_('You are not following any users or repositories')}
%endif