## -*- 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')}
%if c.journal: %for entry in c.journal:
gravatar
${entry.user.name} ${entry.user.lastname}
${h.action_parser(entry)}
${h.action_parser_icon(entry)}
%if entry.repository: ${h.link_to(entry.repository.repo_name, h.url('summary_home',repo_name=entry.repository.repo_name))} %else: ${entry.repository_name} %endif - ${h.age(entry.action_date)}
%endfor %else: ${_('No entries yet')} %endif
${_('Following')}
%if c.following: %for entry in c.following:
%if entry.follows_user_id: ${_('user')} ${entry.follows_user.full_contact} %endif %if entry.follows_repo_id: %if entry.follows_repository.private: ${_('private repository')} %else: ${_('public repository')} %endif ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home', repo_name=entry.follows_repository.repo_name))} %endif
%endfor %else: ${_('You are not following any users or repositories')} %endif