37 |
38 | {% if instance.title %}
{{ instance.title|safe }}
{% endif %}
39 | {% if gallery.title %}
{{ gallery.title|safe }}
{% endif %}
40 |
41 | {% if gallery.description %}{{ gallery.description|safe }}{% endif %}
42 |
43 |
44 |
45 | {% trans "Play" %}
46 | {% trans "Pause" %}
47 | {% trans "« Back" %}
48 | {% trans "Next »" %}
49 |
50 |
51 |
52 |
53 |
54 | {% for image in images %}
55 | -
56 |
57 |
58 |
59 |

60 |
61 |
62 |
63 | {% if image.title or image.description %}
64 |
65 | {% if image.title %}
{{ image.title|safe|escape }}
{% endif %}
66 | {% if image.description %}
{{ image.description|safe }}
{% endif %}
67 |
68 | {% endif %}
69 |
70 |
71 | {% endfor %}
72 |
73 |
74 |
75 |
76 |
87 |
88 |
--------------------------------------------------------------------------------
/simplegallery/templates/simplegallery/plugin_form.html:
--------------------------------------------------------------------------------
1 | {% extends "admin/cms/page/plugin_change_form.html" %}
2 |
3 | {% block top %}{% endblock %}
--------------------------------------------------------------------------------