Metadata-Version: 1.1
Name: django-bootstrap-crud-templates
Version: 1.0.1
Summary: A repository of Bootstrap CRUD templates for Django.
Home-page: http://packages.python.org/django-bootstrap-crud-templates
Author: Z. Alem
Author-email: alem@cidola.com
License: GNU General Public License v3 (GPLv3)
Description: ===============================
        Django Bootstrap CRUD Templates
        ===============================
        
        Django has freed the developer from the toil of writing boilerplate view logic
        via its class-based view; Bootstrap, the toil of designing aesthetic CSS+HTML
        components.
        
        Django Bootstrap CRUD Templates seeks to formally unite the two, allowing
        developers to simply write class-based views and then select, or extend a chosen
        Bootstrap template.
        
        Demo_
        
        .. _Demo: http://bsct-demo.cidola.com/widget/list
        
        
        Installation
        -------------
        1. ``pip install django-bootstrap-crud-templates``
        2. Add ``'bsct'`` in the ``INSTALLED_APPS`` list in your project's settings module.
        
        Usage
        -----
        
        Django Bootstrap CRUD Templates provides a repository of Bootstrap-integrated Django
        templates. These templates are designed to work directly with the context
        variables provided by the Django Class-Based View (CBV) and the attributes
        provided by the Django model.
        
        Model Requirements
        ~~~~~~~~~~~~~~~~~~
        
        In order to make the most use of the features, the Model should have a few
        attributes defined:
            
        - ``get_absolute_url`` *: Returns the url to view the instance.
        - ``get_create_url``: Returns the url to create an instance.
        - ``get_list_url``: Returns the url to list all instances.
        - ``get_delete_url``: Returns the url to delete the instance.
        - ``get_update_url``: Returns the url to update the instance.
        
        * Required for minimal navigational functionality.
        
        For example, with a delete url named 'widget_delete', get_update_url may be
        defined as: ::
            
            def get_delete_url( self ):
                return reverse( 'widget_delete', kwargs = {'pk' : self.pk } )
        
        
        View Requirements
        ~~~~~~~~~~~~~~~~~
        To use a template directly, simply assign its name to the `template_name`
        attribute of the CBV. ::
        
            #in views.py
            class CreateWidget( generic.CreateView ):
                model = models.Widget
                template_name = 'bsct/plain/form.html'
        
        By default, the template extends from 'base.html' and populates the 
        block BSCT_MAIN. Therefore, you will need to have the template 'base.html'
        and it must contain the block BSCT_MAIN ::
            
            # base.html
            {% block BSCT_MAIN %}
            {% endblock %}
        
        If you wish to have the template extend from a template other than 'base.html',
        simply provide its name as the value for the context variable 'bsct_base'. ::
        
            #in views.py
            class CreateWidget( generic.CreateView ):
                model = models.Widget,
                template_name = 'bsct/plain/form.html'
                
                def get_context_data(self, **kwargs):
                    context = super(CreateWidget, self).get_context_data(**kwargs)
                    context['bsct_base'] = 'my_special_widget_base.html'
                    return context
        
        Customization
        -------------
        Customizing these templates is as simple as creating your own template and
        including the desired Django Bootstrap CRUD Templates template. ::
        
            # widget_list.html
            {% extends 'bsct/plain/list.html' %}
        
            {% block BSCT_LIST_ACTIONS %}
                <a href='{% object.use_widget %}'> Use Widget </a>   
            {% endblock %}
        
        The default 'bsct/base.html' links to a CDN-hosted minified Bootstrap
        CSS file. If you prefer to use your own version, simply override the block
        BSCT_BOOTSTRAP_CDN. ::
        
            {% block BSCT_BOOTSTRAP_CDN %}
            {% endblock %}
        
        Built for developers, by developers
        -----------------------------------
        Django Bootstrap CRUD Templates is an open source project that ultimately aims to
        host a collection of user-submitted Bootstrap template-sets for Django. 
        
        If you have a set of Bootstrap templates you wish to include, simply 
        follow the five steps below (assuming you have a GitHub account):
        
        1. Fork and clone https://github.com/Alem/django-bootstrap-crud-templates.
        2. Ensure your set has at least two of the following templates:
        
           - form.html
           - list.html
           - detail.html
           - confirm_delete.html 
        
        3. (optional) Create a README.rst with a brief description of the template set and any other pertinent information ( external dependencies, author, homepage ).
        
        4. Place all the files in "bsct/templates/yourthemename/".
        
        5. Pull.
        
        All contributed templates inherit the license of the encompassing project.
        
Keywords: django,templates. bootstrap,bootstrap templates,crud templates
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
