blob: 71a8056df0d29d030e7771522371c83776e0f948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-md-6">
{{ pagination.info }}
</div>
<div class="col-md-6 text-right">
{% if current_user.is_authenticated %}
<a class="text-muted" href="{{ url_for('bookmarks.list_') }}">all</a> ⸱
<a class="text-muted" href="{{ url_for('bookmarks.list_') + 'private' }}">private</a> ⸱
<a class="text-muted" href="{{ url_for('bookmarks.list_') + 'public' }}">public</a> ⸱
<a class="text-muted" href="{{ url_for('bookmarks.list_') + 'unread' }}">unread</a>
{% endif %}
</div>
</div>
{{ pagination.links }}
<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>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }} </a>{% endfor %}</div>
{{ bookmark.time | datetime }}
{% if current_user.is_authenticated %}
<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>
{% endif %}
</p>
</a>
</li>
{% endfor %}
</ul>
{{ pagination.links }}
</div><!-- /.container -->
{% endblock %}
|