File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
pgcommitfest/commitfest/templates Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,6 @@ div.form-group div.controls ul li label input {
3939 display : inline;
4040 vertical-align : middle;
4141}
42- div .form-group div .controls input [type = "checkbox" ] {
43- width : 10px ;
44- height : unset;
45- display : inline-block;
46- }
47- div .form-group div .controls > div .form-control : has (input [type = "checkbox" ]) {
48- display : flex;
49- gap : 8px ;
50- }
5142
5243div .form-group div .controls input .threadpick-input {
5344 width : 80% ;
Original file line number Diff line number Diff line change 2222 < div class ="alert alert-danger "> {{e}}</ div >
2323 {%endfor%}
2424 {%endif%}
25- {%if not field.name in form.selectize_fields%}{{field|field_class:"form-control"}}{%else%}{{field}}{%endif%}
25+ {%if field.name|slice:":7" == 'review_' %}
26+ {%for choice in field %}
27+ < div class ="form-check form-check-inline ">
28+ < input type ="checkbox " class ="form-check-input " name ="{{field.name}} " value ="{{choice.data.value}} " id ="{{choice.id_for_label}} " {% if choice.data.selected %}checked{% endif %} >
29+ < label class ="form-check-label " for ="{{choice.id_for_label}} "> {{choice.choice_label}}</ label >
30+ </ div >
31+ {%endfor%}
32+ {%elif not field.name in form.selectize_fields%}{{field|field_class:"form-control"}}{%else%}{{field}}{%endif%}
2633 {%if field.help_text%}< br /> {{field.help_text|safe}}{%endif%}</ div >
2734 </ div >
2835 {%else%}
You can’t perform that action at this time.
0 commit comments