Metadata-Version: 1.0
Name: django-smart-extends
Version: 0.5.1
Summary: This application is useful when you want to overwrite a template of a application in your project. Currently this in Django produce infinite recursion 
Home-page: http://code.google.com/p/django-smart-extends/
Author: Yaco Sistemas S.L.
Author-email: pmartin@yaco.es
License: LGPL 3
Description: .. contents::
        
        =============
        Smart extends
        =============
        
        Smart extends is a Django application that allows improve
        
        It is distributed under the terms of the license write in the same directory,
        in the file LICENCE
        
        Depencies
        =========
        
        Django 1.2 - 1.3 (Tested for those versions)
        
        Django 1.1 - 1.1.X (There were two branches to those versions)
        
        How to install
        ==============
        
        In your settings.py
        -------------------
        
        ::
        
        INSTALLED_APPS = (
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.sites',
        'django.contrib.admin',
        
        ...
        
        'smartextends',
        
        )
        
        and if you want:
        
        ::
        
        OVERWRITE_EXTENDS = True
        
        How to use
        ----------
        
        This application is useful when you want to overwrite a template of a application in your project.
        Currently this in Django produce infinite recursion
        
        If you don't set OVERWRITE_EXTENDS = True
        
        file:admin/change_list.html
        
        ::
        
        {% extends "admin/change_list.html" %}
        
        {% block extrastyle %}
        {{ block.super }}
        <link rel="stylesheet" type="text/css" href="XXX" />
        {% endblock %}
        
        Else:
        
        file:admin/change_list.html
        
        ::
        
        {% smart_extends "admin/change_list.html" %}
        
        {% block extrastyle %}
        {{ block.super }}
        <link rel="stylesheet" type="text/css" href="XXX" />
        {% endblock %}
        
        Patches
        =======
        
        If you set TEMPLATE_DEBUG = True in settings.py you must patch django code. You can find the patch in the patches directoy. There are one patch for Django 1.1.X version, other for Django 1.2 and other for Django 1.3.
        
        
Keywords: django extends templatetags infinite recursion
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
