fe0e4a8fa66806e396fd16335b87c414363b3202
[wolnelektury.git] / src / club / templates / club / widgets / plan.html
1
2 <div style="display:flex">
3 {% for _1, optgroup, _2 in widget.optgroups %}
4   {% for option in optgroup %}
5     <div style="display: flex-item;">
6     {% with plan=option.label %}
7       <big>{{ plan.min_amount }} zł</big><br>
8       {{ plan.get_interval_display }}
9
10       {% for pm in plan.payment_methods %}
11         <div>
12                 <input id="id_{{ option.value }}_{{ pm.slug }}" type="radio" name="payment_method" value="{{ option.value }}_{{ pm.slug }}">
13                 <label for="id_{{ option.value }}_{{ pm.slug }}">
14         {% include pm.template_name %}
15                 </label>
16         </div>
17       {% endfor %}
18
19     {% endwith %}
20     </div>
21   {% endfor %}
22 {% endfor %}
23 </div>
24
25