Metadata-Version: 1.1
Name: django-flatcontent
Version: 0.1.0
Summary: Django FlatContent is intended as a flatpages-like app but for smaller chunks of content that can be edited in the Django admin.
Home-page: http://github.com/orcasgit/django-flatcontent/tree
Author: Oregon Center for Applied Science
Author-email: support@orcasinc.com
License: BSD
Download-URL: http://github.com/orcasgit/django-flatcontent/downloads
Description: ==================
        Django FlatContent
        ==================
        
        Django FlatContent is intended as a flatpages-like app but for smaller chunks
        of content that can be edited in the Django admin.
        
        Features
        ========
        
        * Simple FlatContent model
        * Template tag for pulling FlatContent into templates
        * Caching of FlatContent for performance
        
        Installation
        ============
        
        1. Add the ``flatpages`` directory to your Python path.
        2. Add ``flatpages`` to your ``INSTALLED_APPS``.
        3. Run the command ``manage.py syncdb`` to install the models.
        
        Usage
        =====
        
        Once content is available in the `FlatContent` model, it can be accessed via
        the templates using the provided template tags::
        
            {% load flatcontent_tags %}
            <div id="footer">
                {% flatcontent footer %}
            </div>
        
        The above will perform a slug lookup on the text "footer" and return the
        content associated with that slug.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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: Topic :: Software Development :: Libraries :: Python Modules
