diff --git a/rhodecode/templates/bookmarks/bookmarks_data.html b/rhodecode/templates/bookmarks/bookmarks_data.html new file mode 100644 --- /dev/null +++ b/rhodecode/templates/bookmarks/bookmarks_data.html @@ -0,0 +1,33 @@ +%if c.repo_bookmarks: + + + + + + + + + %for cnt,book in enumerate(c.repo_bookmarks.items()): + + + + + + + + %endfor +
${_('date')}${_('name')}${_('author')}${_('revision')}${_('links')}
+ ${book[1].date} + + + ${h.link_to(book[0], + h.url('changeset_home',repo_name=c.repo_name,revision=book[1].raw_id))} + + ${h.person(book[1].author)}r${book[1].revision}:${h.short_id(book[1].raw_id)} + ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=book[1].raw_id),class_="ui-button-small xsmall")} + | + ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=book[1].raw_id),class_="ui-button-small xsmall")} +
+%else: + ${_('There are no bookmarks yet')} +%endif \ No newline at end of file