Metadata-Version: 1.1
Name: django-pascal-templates
Version: 0.8.5
Summary: Django generic views with PascalCase template paths with model named folders.
Home-page: https://github.com/wooyek/django-pascal-templates
Author: Janusz Skonieczny
Author-email: js+pypi@bravelabs.pl
License: MIT
Description: django-pascal-templates
        =======================
        
        Django generic views with PascalCase template paths with model named folders.
        
        Replace your usual generic view imports with:
        
        .. code:: python
        
           from pascal_templates.views import DetailView, CreateView, UpdateView, DeleteView, ListView
        
        And in result get additional template_names allowing you to keep templates in folders named after your models:
        
        .. code:: python
        
           names = [
              'some_app/somemodel_detail.html',
              'some_app/SomeModel/detail.html',   # This is what you get
            ]
        
Keywords: django template folder dictionary pascal models
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
