diff --git a/templates/series.html b/templates/series.html index c99f35e..fadbe50 100644 --- a/templates/series.html +++ b/templates/series.html @@ -2,49 +2,49 @@ {% block main_content %}
-

{{page_title}}

+

{{page_title}}

{% if 'Create' not in page_title %} -

Books in Series

+

Books in Series

{% endif %}
-
-
+
+ {{ form.csrf_token }} {{ form.id }} -
- {{ form.title.label( class="col-lg-3 justify-content-end" ) }} - {{ form.title( class="form-control col-lg-9" ) }} +
+ {{ form.title.label( class="col-3 justify-content-end" ) }} + {{ form.title( class="form-control col-9" ) }}
-
- {{ form.num_books.label( class="col-lg-3 justify-content-end" ) }} - {{ form.num_books( class="form-control col-lg-9" ) }} +
+ {{ form.num_books.label( class="col-3 justify-content-end" ) }} + {{ form.num_books( class="form-control col-9" ) }}
-
- {{ form.calcd_rating.label( class="col-lg-3 justify-content-end" ) }} - {{ form.calcd_rating( class="form-control col-lg-9", readonly="true" ) }} +
+ {{ form.calcd_rating.label( class="col-3 justify-content-end" ) }} + {{ form.calcd_rating( class="form-control col-9", readonly="true" ) }}
-
- {{ form.note.label( class="col-lg-3 justify-content-end" ) }} - {{ form.note( class="form-control col-lg-9", rows="5" ) }} +
+ {{ form.note.label( class="col-3 justify-content-end" ) }} + {{ form.note( class="form-control col-9", rows="5" ) }}
-
+

-
- {{ form.submit( class="btn btn-primary offset-lg-3 col-lg-2" )}} +
+ {{ form.submit( class="btn btn-primary offset-3 col-2" )}} {% if 'Edit' in page_title %} - {{ form.delete( class="btn btn-outline-danger col-lg-2" )}} + {{ form.delete( class="btn btn-outline-danger col-2" )}} {% endif %}
-
-
+
+
{% if 'Create' not in page_title %}
{% endif %} -
+
{% endblock main_content %}