aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/bookmarks.html
blob: 96f38d260c5856da539ced34c72bbe8b6c2912aa (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">
    <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>
                    <div>{{ " ".join(bookmark.tags_proxy) }}</div>
                    {{ bookmark.time }}
                    <a class="text-muted" href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
                    <a class="text-muted" href="{{ url_for('bookmark.delete', bookmark_id=bookmark.id) }}">delete</a>
                </p>
            </a>
        </li>
    {% endfor %}
    </ul>
</div><!-- /.container -->
{% endblock %}
bgstack15