aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/bookmarks.html
blob: 699d7e629f5fa572cbcb5de6fb8ee09151718b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% 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="#">
                <h4 class="list-group-item-heading">
                    <a href="{{ bookmark.href }}">{{ bookmark.title }}</a>
                </h4>
                <p class="list-group-item-text">
                    <div class="text-muted">{{ bookmark.description }}</div>
                    {{ " ".join(bookmark.tags_proxy) }}
                    <a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
                    <a href="{{ url_for('bookmark.delete', bookmark_id=bookmark.id) }}">delete</a>
                </p>
            </a>
        </li>
    {% endfor %}
    </ul>
</div><!-- /.container -->
{% endblock %}
bgstack15