Compare commits

...

3 commits

Author SHA1 Message Date
singeltary
6f47de37bb
Merge 465598edd3 into 83a60b1289 2024-12-20 18:07:57 +01:00
singeltary
465598edd3
Update forms.html
Updated button on form for editing participants--"Save" for edits instead of "Add."
2024-08-10 01:26:37 -04:00
singeltary
3825710189
Update forms.html
Added navigation element in 'Edit Participants' window
2024-08-10 00:57:36 -04:00

View file

@ -236,7 +236,8 @@
{{ input(form.weight) }} {{ input(form.weight) }}
</fieldset> </fieldset>
<div class="actions"> <div class="actions">
{{ form.submit(class="btn btn-primary") }} <button class="btn btn-secondary input-group-addon" type="submit">{{ _("Save") }}</button>
<a href="{{ url_for(".list_bills") }}" class="btn btn-outline-secondary"> {{_("Cancel") }} </a>
</div> </div>
{% endmacro %} {% endmacro %}