Очистка репозитория: удалены тестовые и служебные файлы

Удалены из git:
- Скрипты активации и диагностики тенантов
- Тестовые файлы (test_*.py, test_*.txt)
- SQL скрипты для отладки
- Backup файлы (*.backup, *.old)
- Дубликат .gitignore из myproject/

Файлы остались на диске, но теперь игнорируются git.
В репозитории остались только:
- myproject/ (основной код проекта)
- requirements.txt
- .gitignore

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-02 15:13:51 +03:00
parent 384f3c22f8
commit eaa0b5bd3c
38 changed files with 0 additions and 4308 deletions

View File

@@ -1,10 +0,0 @@
from django.shortcuts import render
from django.contrib.auth.decorators import login_required
@login_required
def inventory_home(request):
"""
Главная страница Склада для управления инвентаризацией
"""
return render(request, 'inventory/home.html')