├── .gitignore ├── LICENCE ├── MANIFEST.in ├── README.rst ├── flat_responsive ├── __init__.py ├── static │ └── admin │ │ └── css │ │ ├── responsive.css │ │ └── responsive_rtl.css └── templates │ └── admin │ └── base_site.html ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/README.rst -------------------------------------------------------------------------------- /flat_responsive/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.0' 2 | -------------------------------------------------------------------------------- /flat_responsive/static/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/flat_responsive/static/admin/css/responsive.css -------------------------------------------------------------------------------- /flat_responsive/static/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/flat_responsive/static/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /flat_responsive/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/flat_responsive/templates/admin/base_site.html -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elky/django-flat-responsive/HEAD/setup.py --------------------------------------------------------------------------------