- Описание проекта Mice
- Applications
. ├── README.md ├── contact │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── home │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── manage.py ├── media ├── mice │ ├── init.py │ ├── settings.py │ ├── static │ ├── templates │ │ ├── base.html │ │ ├── fullwidth.html │ │ ├── sidebar_left.html │ │ └── sidebar_right.html │ ├── urls.py │ └── wsgi.py ├── mice_about │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── mice_direct │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── mice_hotels │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── mice_news │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── mice_platforms │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── mice_programs │ ├── init.py │ ├── admin.py │ ├── migrations │ │ └── init.py │ ├── models.py │ ├── tests.py │ └── views.py ├── requirements.txt ├── skeleton.txt └── static
22 directories, 65 files