1
0
Fork 0

Merge pull request #1542 from bookwyrm-social/cancel-button

A cancel button that leads nowhere
This commit is contained in:
Mouse Reeve 2021-10-16 07:21:39 -07:00 committed by GitHub
commit 5558216917
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View file

@ -108,7 +108,13 @@
{% if not confirm_mode %}
<div class="block">
<button class="button is-primary" type="submit">{% trans "Save" %}</button>
{% if book %}
<a class="button" href="{{ book.local_path }}">{% trans "Cancel" %}</a>
{% else %}
<a href="/" class="button" data-back>
<span>{% trans "Cancel" %}</span>
</a>
{% endif %}
</div>
{% endif %}
</form>