├── .gitignore ├── LICENSE ├── README.rst ├── docs ├── changelog.rst ├── conf.py ├── djangoadmin_domain.rst ├── index.rst ├── installation.rst ├── management_commands.rst └── todo.rst ├── example ├── __init__.py ├── books │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── tests.py │ └── views.py ├── docs │ ├── Makefile │ ├── books │ │ ├── article.rst │ │ ├── index.rst │ │ └── publication.rst │ ├── conf.py │ ├── index.rst │ └── make.bat ├── example.db ├── html-logo.jpg ├── manage.py ├── settings.py ├── simpleadmindoc.jpg └── urls.py ├── setup.py └── simpleadmindoc ├── __init__.py ├── ext ├── __init__.py ├── djangoadmindoc.py └── domains │ ├── __init__.py │ └── djangoadmin.py ├── generate.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ ├── docgenapp.py │ └── docgenmodel.py ├── models.py ├── templates └── simpleadmindoc │ ├── app.rst │ └── model.rst ├── templatetags ├── __init__.py └── simpleadmindoc_tags.py ├── tests.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/README.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/djangoadmin_domain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/docs/djangoadmin_domain.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/management_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/docs/management_commands.rst -------------------------------------------------------------------------------- /docs/todo.rst: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/books/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/books/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/books/admin.py -------------------------------------------------------------------------------- /example/books/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/books/models.py -------------------------------------------------------------------------------- /example/books/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/books/tests.py -------------------------------------------------------------------------------- /example/books/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /example/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/Makefile -------------------------------------------------------------------------------- /example/docs/books/article.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/books/article.rst -------------------------------------------------------------------------------- /example/docs/books/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/books/index.rst -------------------------------------------------------------------------------- /example/docs/books/publication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/books/publication.rst -------------------------------------------------------------------------------- /example/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/conf.py -------------------------------------------------------------------------------- /example/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/index.rst -------------------------------------------------------------------------------- /example/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/docs/make.bat -------------------------------------------------------------------------------- /example/example.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/example.db -------------------------------------------------------------------------------- /example/html-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/html-logo.jpg -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/simpleadmindoc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/simpleadmindoc.jpg -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/example/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/setup.py -------------------------------------------------------------------------------- /simpleadmindoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/ext/djangoadmindoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/ext/djangoadmindoc.py -------------------------------------------------------------------------------- /simpleadmindoc/ext/domains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/ext/domains/djangoadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/ext/domains/djangoadmin.py -------------------------------------------------------------------------------- /simpleadmindoc/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/generate.py -------------------------------------------------------------------------------- /simpleadmindoc/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/management/commands/docgenapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/management/commands/docgenapp.py -------------------------------------------------------------------------------- /simpleadmindoc/management/commands/docgenmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/management/commands/docgenmodel.py -------------------------------------------------------------------------------- /simpleadmindoc/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/templates/simpleadmindoc/app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/templates/simpleadmindoc/app.rst -------------------------------------------------------------------------------- /simpleadmindoc/templates/simpleadmindoc/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/templates/simpleadmindoc/model.rst -------------------------------------------------------------------------------- /simpleadmindoc/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleadmindoc/templatetags/simpleadmindoc_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/templatetags/simpleadmindoc_tags.py -------------------------------------------------------------------------------- /simpleadmindoc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/tests.py -------------------------------------------------------------------------------- /simpleadmindoc/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmihelac/django-simpleadmindoc/HEAD/simpleadmindoc/util.py --------------------------------------------------------------------------------