Add basic structure for public dashboard
parent
2a3ef33f62
commit
2f9adbb11c
@ -0,0 +1,4 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block everything %}
|
||||
{% endblock %}
|
@ -1 +1,4 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
def public_dashboard(request):
|
||||
return render(request, "public_dashboard.html", {})
|
||||
|
Loading…
Reference in New Issue