CBV implementation for a page that allows you to add a new Widget User

parent 7cdc9528
......@@ -13,5 +13,10 @@ class WidgetUserDetailView(DetailView):
template_name = "dashboard/widgetuser-details.html"
class WidgetUserCreateView(CreateView):
model = WidgetUser
template_name = "dashboard/widgetuser-add.html"
fields = "__all__"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment