/dmw

Primary LanguageCSS

Содержание

Описание проекта Mice

Файловая структура проекта

. ├── 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

Applications

Home Application

Models

Views

Contact Application

Models

Views

MICE Config

Mice About Application

Models

Views

Mice Directions Application

Models

Views

Mice Hotels Application

Models

Views

Mice News Application

Models

Views

Mice Platforms Application

Models

Views

Mice Programs Application

Models

Views