Initialize Fonrey Django multi-tenant project skeleton
Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
This commit is contained in:
3
templates/errors/403.html
Normal file
3
templates/errors/403.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}403{% endblock %}
|
||||
{% block content %}<div class="p-8">403 Forbidden</div>{% endblock %}
|
||||
3
templates/errors/404.html
Normal file
3
templates/errors/404.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}404{% endblock %}
|
||||
{% block content %}<div class="p-8">404 Not Found</div>{% endblock %}
|
||||
3
templates/errors/500.html
Normal file
3
templates/errors/500.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}500{% endblock %}
|
||||
{% block content %}<div class="p-8">500 Server Error</div>{% endblock %}
|
||||
Reference in New Issue
Block a user