Metadata-Version: 1.1
Name: django-allauth-bootstrap
Version: 0.1
Summary: Twitter Bootstrap Layout for Django Allauth
Home-page: https://bitbucket.org/cschur/django-allauth-bootstrap
Author: Chris Schur
Author-email: chris.schur@gmx.de
License: BSD License
Description: ######
        README
        ######
        
        Twitter Bootstrap layout for `django-allauth
        <https://github.com/pennersr/django-allauth>`_.
        
        
        Requirements
        ============
        
        * Python 2.7 or >=3.3.
        * Django >=1.6
        
        
        Installation
        ============
        
        Installation via::
        
           pip install django-allauth-bootstrap
        
        The templates extend ``base.html``, so the ``templates`` folder of the
        project should provide one, together with the Twitter Bootstrap and a JQuery
        library.
        
        Then add ``'bootstrapform'`` and ``'allauth_bootstrap'`` to
        ``INSTALLED_APPS``, *before* ``'allauth'``.  The order is important because
        following apps are overwritten::
        
           INSTALLED_APPS = (
               # ...
               'django.contrib.sites',  # For ``allauth``.
        
               'bootstrapform',
               'allauth_bootstrap',
               'allauth',
               'allauth.account',
               # ...
           )
        
        For allauth itself, remember to add the following settings::
        
           from django.conf import global_settings
        
        
           SITE_ID = 1
        
           TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
               "allauth.account.context_processors.account",
               "allauth.socialaccount.context_processors.socialaccount",
           )
        
           LOGIN_REDIRECT_URL = '/'
        
        
        Example Project
        ===============
        
        The example project can be run to have a quick look and to check out a
        running setup. Download the source files and run::
        
           virtualenv -p /usr/bin/python3 ~/myenv
           source ~/myenv/bin/activate
           pip install -r requirements.txt
           ./manage.py migrate
           ./manage.py runserver
        
        
        Customization
        =============
        
        To use custom templates, there are two ways to accomplish that:
        
        1. Overwrite a template at ``templates/account`` to replace them completely.
        2. Inherit a template at ``templates/account`` to overwrite only one or more
           of its blocks. Defining a custom URL pointing at the custom template is
           necessary then.
        
Keywords: django,allauth,Twitter,Bootstrap,website
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Python Modules
