Metadata-Version: 1.1
Name: django-improved-inlines
Version: 0.1.0a
Summary: Inline object rendering for django, based on django-basic-apps + filters + templates
Home-page: http://github.com/issackelly/django-improved-inlines
Author: Issac Kelly
Author-email: issac@kellycreativetech.com
License: BSD
Description: Django Improved Inlines
        =======================
        
        Django improved inlines is a version of the inlines app from [django-basic-apps](http://github.com/nathanborror/django-basic-apps/) that has two specific features that I needed:
        
        filter="" instead of just ids
        and template="" instead of just inlines/<app>_<model>.html
        
        That's it. Thanks to nathanborror for the initial code.
        
        Dependancies
        ------------
        
        * BeautifulSoup [http://www.crummy.com/software/BeautifulSoup/]([http://www.crummy.com/software/BeautifulSoup/]) is required to use the inlines app.
        
        Usage
        -----
        
        Inlines is a template filter that can be used in
        conjunction with inline markup to insert content objects
        into other pieces of content. An example would be inserting
        a photo into a blog post body.
        
        Drop-in replacement for django-basic-inlines/inlines
        
        An example of the markup is:
        <inline type="calendar.event" filter="date__gte=datetime.date.today()" template="calendar/event_inline.html" />
        
        other attribute options are:
        <inline type="app.model" id="<some pk>"  class="some_class_passed_to_template"/>
        <inline type="app.model" ids="<some pk>,<some other pk>" />
        
        
        The type attribute is app_name.model_name and the id is
        the object id. Pretty simple.
        
        In your template you would say:
        {% load inlines %}
        
        {{ post.body|render_inlines }}
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Requires: BeautifulSoup
