Mercurial > libervia-templates
comparison sat_templates/default/blog/macros.html @ 147:33c7ce833d3f
install: setup.py fix + moved "default" dir in a "sat_templates" dir:
the merge request at https://bugs.goffi.org/mr/view/3 was a good basis, but not fully working ("default" dir was removed), this patch fixes it, and do some improvments:
- moved "default" in "sat_templates" dir, which correspond to the python module, so it can be found easily from python
- added VERSION, and mercurial hash detection, in the same way as for Cagou and backend
- slight modification of classifiers
- replaces tabs coming from MR by spaces
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 02 Jun 2018 17:25:43 +0200 |
parents | default/blog/macros.html@da8f1ba9034d |
children |
comparison
equal
deleted
inserted
replaced
146:7dc00829c32f | 147:33c7ce833d3f |
---|---|
1 {% import 'input/textbox.html' as textbox with context %} | |
2 | |
3 {% macro show_items(items, comments=False, expanded=false, dates_fmt=none) %} | |
4 {# show items and comments items if present after each item, | |
5 then post form if allow_commenting is set | |
6 @param items(BlogItems): items to show | |
7 @param comments(bool): True items are comments | |
8 if False, a div with "main_article" class will be added | |
9 @param expanded(bool): initial state of items | |
10 #} | |
11 {% if dates_format is undefined %} | |
12 {% set dates_format = dates_fmt or 'short' %} | |
13 {% endif %} | |
14 {% for item in items %} | |
15 {% if not comments %}<div class="main_article">{% endif %} | |
16 {% include 'blog/item.html' %} | |
17 {% if not comments %}</div>{% endif %} | |
18 | |
19 {# we recursively display comments for all comments nodes (usually there's only one) #} | |
20 {% for comments_items in item.comments_items_list %} | |
21 <button class="comments_btn" onclick="clicked_mh_fix('{{'comments_panel'|next_gidx}}');clicked_cls(this)"> | |
22 <span class='show'>{% trans %}show comments{% endtrans %}</span> | |
23 <span class='hide'>{% trans %}hide comments{% endtrans %}</span> | |
24 ({{comments_items|count}}) | |
25 </button> | |
26 <div id="{{'comments_panel'|cur_gidx}}" class="comments_panel"> | |
27 {% if allow_commenting %} | |
28 <div class="comment_post"> | |
29 {{- textbox.comment(service=comments_items.service, node=comments_items.node) -}} | |
30 </div> | |
31 {% endif %} | |
32 | |
33 <div class="comments"> | |
34 {{show_items(comments_items, comments=True)}} | |
35 </div> | |
36 </div> | |
37 | |
38 {% endfor %} | |
39 | |
40 {% endfor %} | |
41 {% endmacro %} |