From a11f5526209dc48b6dd0735aa5acfdf011d98cd3 Mon Sep 17 00:00:00 2001 From: Daniel W Bond Date: Wed, 26 Feb 2020 13:36:37 -0500 Subject: [PATCH] use crispy form tag for update rating form --- bookshare/trades/templates/rating_edit.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bookshare/trades/templates/rating_edit.html b/bookshare/trades/templates/rating_edit.html index 59a3f53..7f58480 100644 --- a/bookshare/trades/templates/rating_edit.html +++ b/bookshare/trades/templates/rating_edit.html @@ -6,14 +6,16 @@ SRCT Bookshare • {{ listing.title }} • Edit Rating {% block content %} +{% load crispy_forms_tags %} + {% include 'layouts/bookshare_title.html' with subtitle="Edit Rating" %}
-
+
{% csrf_token %} - {{ form.as_p }} + {{ form|crispy }}
-- GitLab