Mercurial > libervia-templates
comparison sat_templates/templates/default/forum/view_topics.html @ 164:e9f0a4215e46
multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 10 Sep 2018 08:53:33 +0200 |
parents | sat_templates/default/forum/view_topics.html@33c7ce833d3f |
children |
comparison
equal
deleted
inserted
replaced
163:33f67228686a | 164:e9f0a4215e46 |
---|---|
1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} | |
2 {% import 'input/field.html' as field with context%} | |
3 {% import 'input/textbox.html' as textbox with context %} | |
4 {% import 'input/navigation.html' as navigation with context %} | |
5 {% import 'components/avatar.html' as avatar with context %} | |
6 | |
7 {% block body %} | |
8 | |
9 {% if not topics %} | |
10 <div class="message--info"> | |
11 {% trans %}There is not message yet in this forum.{% endtrans %} | |
12 {% if profile %} | |
13 {% trans %}You can start a topic of interest by filling this form.{% endtrans %} | |
14 {% else %} | |
15 {% trans %}You can login to create a new topic.{% endtrans %} | |
16 {% endif %} | |
17 </div> | |
18 {% endif %} | |
19 {% if profile %} | |
20 <div class="forum__topic_create"> | |
21 {% call textbox.textbox(service, node, placeholder=_("Your message"), submit_label=_("Create topic"), type="new_topic") %} | |
22 {{ field.text("title", placeholder=_("Your topic (try to be short and explicit)"), required=True) }} | |
23 {% endcall %} | |
24 </div> | |
25 {% endif %} | |
26 | |
27 <div class="forum__topics"> | |
28 {% for topic in topics %} | |
29 <div> | |
30 <a href="{{topic.http_uri}}"> | |
31 {{ avatar.avatar(topic.author) }} | |
32 {{topic.title}} | |
33 </a> | |
34 </div> | |
35 {% endfor %} | |
36 </div> | |
37 | |
38 {{ navigation.prev_next(_("older topics"), _("newer topics")) }} | |
39 {% endblock body %} |