source: bookmarkplugin/trunk/tracbookmark/templates/bookmark_list_jinja.html

Last change on this file was 18549, checked in by Ryan J Ollos, 3 months ago

TracBookmark 1.0.2dev: Add missing braces

Fixes #14223.

File size: 670 bytes
Line 
1# extends 'layout.html'
2<!DOCTYPE html>
3<html>
4  <head>
5    <title>
6      # block title
7      ${_("Bookmarks")}
8      ${ super() }
9      # endblock title
10    </title>
11    # block head
12    ${ super() }
13    # endblock
14  </head>
15  <body>
16  # block content
17  <div id="content">
18    <h1>${_("Your bookmarks")}</h1>
19    <div style="margin-bottom: 3em;">
20    <ul class="bookmarks">
21      # for bookmark in bookmarks:
22        <li><a class="${bookmark.class_}" href="${bookmark.href}">
23          ${bookmark.linkname}</a> ${bookmark.name} (<a href="${bookmark.delete}">${_("Delete")}</a>)</li>
24      # endfor
25    </ul>
26    </div>
27    </div>
28  # endblock content
29  </body>
30</html>
Note: See TracBrowser for help on using the repository browser.