From 481575e968106c6bae2d112c313972a2c6da9e26 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Sat, 22 Oct 2022 09:09:12 -0600 Subject: [PATCH] Add form --- .../templates/dashboard/option_form.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/dashboard/templates/dashboard/option_form.html b/src/dashboard/templates/dashboard/option_form.html index e69de29..84f5538 100644 --- a/src/dashboard/templates/dashboard/option_form.html +++ b/src/dashboard/templates/dashboard/option_form.html @@ -0,0 +1,18 @@ +{% extends "dashboard.html" %} + +{% block content %} +
+
+

Update option

+
+
+
+ {% csrf_token %} + {{form.as_p}} +

+ or cancel +

+
+
+
+{% endblock %}