Mercurial > libervia-templates
view sat_templates/templates/bulma/list/view_grocery.html @ 413:0190a0d32909 default tip
Forum: Major redesign of forums:
Forums have been redesigned. They follow the new general design with 2 or 3 panels,
allowing to have directly a forum if one is found/set up, and a panel on the left to
search/discover other ones.
Categories have been rewritten to be usable with pubsub relationships, a XEP-0277 type
node is used for topics, and each item has a comments node for the threads.
The thread view is set in `forum/show_messages.html` template. It has a header with a
search box and a button to (un)subscribe.
Items are displayed with the same macros as for the blog items.
Below a room is set for editor, tags and attachments.
rel 463
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 05 Sep 2025 21:54:09 +0200 |
parents | 3db3509cbad1 |
children |
line wrap: on
line source
{% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} <div id="list" class="container has-background-white px-1 py-1"> {% for item in list_items|reverse %} {% set is_bought = item.widget_value.status == 'bought' %} <div class="item box has-background-light has-text-weight-medium {{'list-item-closed' if is_bought}}" data-item='{{item.values|tojson}}'> <div class="level is-mobile"> <div class="level-left"> <div class="level-item"> <input type="checkbox" {{"checked" if is_bought}} class="click_to_next_state"> </div> <div class="level-item"> {{item.widget_value.name}} </div> </div> <div class="level-right"> <div class="level-item"> {{item.widget_value.quantity}} </div> <div class="level-item"> <button class="delete click_to_delete"></button> </div> </div> </div> </div> {% endfor %} {% call form.form(id="post_grocery") %} {{ field.meta("type", "grocery") }} {% call field.text("name", class="has-addons", control_class="is-expanded", placeholder=_("item to get"), required=true) %} {{ field.int("quantity", control_class="has-width-7", placeholder=_("quantity"), init="", min=1, in_group=true) }} {{ field.submit("", icon="plus") }} {% endcall %} {% endcall %} </div>