Improve button wording on speaker management page

"Cancel" implied that the button would revert changes you'd made to add
speakers.
This commit is contained in:
Ben Sturmfels 2023-05-02 13:56:55 +10:00
parent 41f9a0efde
commit a77e615e0d
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -23,7 +23,7 @@
<fieldset> <fieldset>
{% include "_form_snippet.html" with form=add_speaker_form %} {% include "_form_snippet.html" with form=add_speaker_form %}
<input type="submit" value="Add speaker" class="btn btn-primary"/> <input type="submit" value="Add speaker" class="btn btn-primary"/>
<a href="{% url "proposal_edit" proposal.pk %}" class="btn btn-light">{% trans 'Cancel' %}</a> <a href="{% url "proposal_edit" proposal.pk %}" class="btn btn-light">{% trans 'Continue editing proposal' %}</a>
</fieldset> </fieldset>
</form> </form>
{% endblock %} {% endblock %}