Initial project

This commit is contained in:
2026-05-02 03:57:17 +03:30
parent 38b6165497
commit 67e78b2a46
27 changed files with 2805 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
{% extends "admin/base.html" %}
{% load i18n static %}
{% block title %}{{ title }} | Survey Studio{% endblock %}
{% block extrastyle %}
{{ block.super }}
{% endblock %}
{% block extrahead %}
{{ block.super }}
{% endblock %}
{% block responsive %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'surveys/admin.css' %}?v=20260502-dark-admin">
{% endblock %}
{% block branding %}
<div id="site-name"><a href="{% url 'admin:index' %}">Survey Studio</a></div>
{% if subtitle %}<div id="site-subtitle">{{ subtitle }}</div>{% endif %}
{% endblock %}
{% block nav-global %}{% endblock %}