Files
Dmitry 97591a71ea Add initial Django project structure with cleaning app
- Created .gitignore to exclude Python-generated files and virtual environments.
- Added .python-version to specify Python version 3.13.
- Implemented models for Client, Brigade, Service, Order, and CompletedWork.
- Created Django admin configurations for managing models.
- Added management command to seed the database with test data.
- Created initial migrations for the models.
- Developed views and templates for listing and detailing orders, clients, and brigades.
- Set up URL routing for the cleaning app.
- Configured Django settings and WSGI/ASGI entry points.
- Added basic test structure in tests.py.
- Included project metadata in pyproject.toml and uv.lock.
2026-05-16 16:09:37 +03:00

23 lines
795 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Клининг{% endblock %}</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="{% url 'cleaning:index' %}">Клининг</a>
<div>
<a class="nav-link text-white d-inline" href="{% url 'cleaning:order_list' %}">Заказы</a>
</div>
</div>
</nav>
<div class="container mt-4"> {% comment %} mt-4 - mergin-top {% endcomment %}
{% block content %}{% endblock %}
</div>
</body>
</html>