Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilyasemenov/django-templates-admin
Edit project template files from the Django admin UI
https://github.com/ilyasemenov/django-templates-admin
Last synced: 11 days ago
JSON representation
Edit project template files from the Django admin UI
- Host: GitHub
- URL: https://github.com/ilyasemenov/django-templates-admin
- Owner: IlyaSemenov
- Created: 2015-10-28T13:02:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-18T15:09:18.000Z (over 8 years ago)
- Last Synced: 2024-08-09T02:54:19.457Z (3 months ago)
- Language: Python
- Size: 228 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
django-templates-admin
======================This Django app allows to edit Django project template files from within the Django administrative interface.
Installation
------------```
pip install django-templates-admin
```Usage
-----Add the application to `settings.py`:
```python
INSTALLED_APPS =
...
'django_templates_admin.templates',
```On the main admin page, a new section **Templates** will appear:
![The list of templates](https://raw.githubusercontent.com/IlyaSemenov/django-templates-admin/master/screenshots/list.png)
Click on a template to edit it:
![Editing a template](https://raw.githubusercontent.com/IlyaSemenov/django-templates-admin/master/screenshots/form.png)