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 +
${_('Name')}${_('Date')}${_('Author')}${_('Revision')}
+ + ${h.link_to(book[0], + h.url('files_home',repo_name=c.repo_name,revision=book[1].raw_id))} + + ${book[1].date}${h.person(book[1].author)} + +
+
+%else: + ${_('There are no bookmarks yet')} +%endif