| author | cavaliet |
| Wed, 10 Jul 2013 15:31:38 +0200 | |
| changeset 230 | fb6932ba9a2b |
| parent 204 | 1d22c4e915a9 |
| child 271 | 4e7178ce5688 |
| permissions | -rw-r--r-- |
| 121 | 1 |
{% extends "egonomy_newbase.html" %} |
| 9 | 2 |
{% load static %} |
3 |
{% load i18n %} |
|
| 17 | 4 |
{% load thumbnail %} |
| 9 | 5 |
|
6 |
{% block title %}{% trans "Home" %}{% endblock %} |
|
7 |
||
| 153 | 8 |
{% block css_page %} |
9 |
<style> |
|
10 |
.bar-tools:first-child { |
|
11 |
background-position: bottom center; |
|
12 |
} |
|
13 |
</style> |
|
14 |
{% endblock %} |
|
15 |
||
| 9 | 16 |
{% block content %} |
| 121 | 17 |
<div class="bar-tools clearfix"> |
18 |
<h3>{% trans "Last annotated pictures" %}</h3> |
|
19 |
<ul class="clearfix"> |
|
20 |
<li><a href="{% url 'all_pictures' %}" alt="{% trans "All pictures" %}">{% trans "All pictures" %}</a></li> |
|
21 |
</ul> |
|
22 |
</div> |
|
|
204
1d22c4e915a9
enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents:
153
diff
changeset
|
23 |
<ul class="list-style-4 clearfix"> |
| 121 | 24 |
{% for img in img_list %} |
25 |
<li> |
|
26 |
{% include "partial/image_in_list.html" %} |
|
27 |
</li> |
|
28 |
{% endfor %} |
|
29 |
</ul> |
|
30 |
<div class="bar-tools clearfix"> |
|
31 |
<h3>{% trans "Last created fragments" %}</h3> |
|
32 |
<ul class="clearfix"> |
|
33 |
<li><a href="{% url 'all_fragments' %}" alt="{% trans "All fragments" %}">{% trans "All fragments" %}</a></li> |
|
34 |
</ul> |
|
35 |
</div> |
|
|
204
1d22c4e915a9
enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents:
153
diff
changeset
|
36 |
<ul class="list-style-4 clearfix"> |
| 121 | 37 |
{% for frg in fragment_list %} |
38 |
<li> |
|
39 |
{% include "partial/fragment_in_list.html" %} |
|
40 |
</li> |
|
41 |
{% endfor %} |
|
42 |
</ul> |
|
| 9 | 43 |
{% endblock %} |
44 |