aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/bookmarks.html
blob: fc0e3aaad9a7e9a27fd1ff32181bb048d56d935d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <h1>{{ _('Bookmarks') }}</h1>
    <ul class="list-group">
    {% for bookmark in bookmarks %}
        <li class="list-group-item">
            <a href="{{ bookmark.href }}">{{ bookmark.href }}</a>&nbsp;
            <a href="{{ bookmark.href }}">{{ bookmark.tags }}</a>&nbsp;
            <a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
        </li>
    {% endfor %}
    </ul>
</div><!-- /.container -->
{% endblock %}
bgstack15