Application to keep simple settings in database. Based on the contenttype framework.
BSD 3-Clause "New" or "Revised" License
83
stars
47
forks
source link
pip install django-settings will cause a Template library settings_tags not found #26
Open
panchicore opened 8 years ago
django-settings-1.3.12.tar.gz from https://pypi.python.org/pypi/django-settings does not contains the template tag: settings_tag.py
├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── django_settings │ ├── init.py │ ├── admin.py │ ├── api.py │ ├── cache.py │ ├── conf.py │ ├── dataapi.py │ ├── forms.py │ ├── lazyimport.py │ ├── management │ │ ├── init.py │ │ └── commands │ │ ├── init.py │ │ └── settings_initialize.py │ ├── models.py │ ├── moduleregistry.py │ ├── templates │ │ └── admin │ │ └── django_settings │ │ ├── change_form.html │ │ └── change_list.html │ └── templatetags │ ├── init.py │ └── settings_admin_urls.py ├── django_settings.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── setup.cfg └── setup.py
will cause a 'settings_tags' is not a valid tag library: Template library settings_tags not found.
solution is to install from github zip.