Move reading modal templates to their own dir

This commit is contained in:
Mouse Reeve
2021-08-16 11:30:11 -07:00
parent c1afd3f852
commit 257c9854c2
13 changed files with 111 additions and 130 deletions

View File

@ -0,0 +1,13 @@
{% extends 'snippets/reading_modals/layout.html' %}
{% load i18n %}
{% load utilities %}
{% block modal-title %}
{% blocktrans trimmed with book_title=book|book_title %}
Want to Read "<em>{{ book_title }}</em>"
{% endblocktrans %}
{% endblock %}
{% block modal-form-open %}
<form name="shelve" action="{% url 'reading-status' 'want' book.id %}" method="post">
{% endblock %}