This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
compte-agglo-montpellier/compte_agglo_montpellier/apps/feed_plugin/templates/feed_plugin/select_user_feed.html

16 lines
438 B
HTML

{% load i18n %}
<form method="post" class="feed-form">
{% csrf_token %}
<ul class='feed-list'>
{% for subwidget in form.feeds %}
<li class='feed-list-item'>
{{ subwidget.tag }}
<label for="{{subwidget.attrs.id}}_{{subwidget.index}}">
{{subwidget.choice_label}}
</label>
</li>
{% endfor %}
</ul>
<input type="submit" value="{% trans "Validate" %}" name="{{ submit }}">
</form>