https://github.com/sonus21/collecttemplate
Django app for collecting apps templates
https://github.com/sonus21/collecttemplate
django python tool
Last synced: about 2 months ago
JSON representation
Django app for collecting apps templates
- Host: GitHub
- URL: https://github.com/sonus21/collecttemplate
- Owner: sonus21
- License: bsd-3-clause
- Created: 2016-10-29T06:35:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-12-16T18:30:30.000Z (over 6 years ago)
- Last Synced: 2025-02-08T09:24:26.865Z (over 1 year ago)
- Topics: django, python, tool
- Language: Python
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CollectTemplate
CollectTemplate is an app for Django framework, which allows you to collect
different app templates to working project templates directory.
## Installation
1. pip install CollectTemplate
2. Add CollectTemplate to settings as shown below
```
INSTALLED_APPS = (
...
'CollectTemplate',
...
)
```
## Usage
| Commmand |Description |
|---|---|
| manage.py collecttemplates -h |Help |
| manage.py collecttemplates |Copy all installed apps templates |
|manage.py collecttemplates -e app1 app2 app3|Copy all installed apps templates and exclude app1, app2 |
|manage.py collecttemplates app1,app2,app3|Copy selected installed apps templates |
|manage.py collecttemplates -t app1/home.html|Copy template app1/home.html |
#### This app is inspired from Mezzanine CMS command collecttemplates