blob: a3ec458016014cbc074588b4ee774ea9c5b2f7d9 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
{% 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>
<br />
<div class="row">
<div class="col-md-6">
{% if tag %}
<span class="glyphicon glyphicon-tags" aria-hidden="true"></span> {{ tag }}
{% endif %}
{% if query %}
<span class="glyphicon glyphicon-search" aria-hidden="true"></span> {{ query }}
{% endif %}
</div>
<div class="col-md-6 text-right">
<form method="GET">
<div class="form-inline">
<input type="text" name="query" class="form-control" />
<button type="submit" class="btn btn-default">Search</button>
</div>
</form>
</div>
</div>
<br />
<div class="row">
<div class="col-md-8">
{{ pagination.links }}
</div>
</div>
<div class="row">
<div class="col-md-8">
<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>
</div>
</div>
<br />
<div class="row">
<div class="col-md-8">
{{ pagination.links }}
</div>
</div>
</div><!-- /.container -->
{% endblock %}
|