├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── __init__.py ├── screenshots └── 1.png ├── setup.py └── swagger_ui ├── __init__.py ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── templates └── swagger_base.html ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/setup.py -------------------------------------------------------------------------------- /swagger_ui/__init__.py: -------------------------------------------------------------------------------- 1 | import swagger_ui.urls 2 | -------------------------------------------------------------------------------- /swagger_ui/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/admin.py -------------------------------------------------------------------------------- /swagger_ui/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/apps.py -------------------------------------------------------------------------------- /swagger_ui/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swagger_ui/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/models.py -------------------------------------------------------------------------------- /swagger_ui/templates/swagger_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/templates/swagger_base.html -------------------------------------------------------------------------------- /swagger_ui/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/tests.py -------------------------------------------------------------------------------- /swagger_ui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/urls.py -------------------------------------------------------------------------------- /swagger_ui/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assem-ch/django-swagger-ui/HEAD/swagger_ui/views.py --------------------------------------------------------------------------------