public
Fork of lincolnloop/django-basic-apps
Description: Simple prebuilt applications.
Homepage: http://code.google.com/p/django-basic-apps/
Clone URL: git://github.com/montylounge/django-basic-apps.git
name age message
file .gitignore Sun Jun 21 18:51:52 -0700 2009 added initial .gitignore [howiworkdaily]
file AUTHORS Tue Mar 24 15:54:50 -0700 2009 Adding authors and license files. [nathanborror]
file LICENSE Thu May 21 07:33:57 -0700 2009 Accidently had the wrong name in the license fi... [nathanborror]
file README.rst Thu Aug 27 20:22:32 -0700 2009 updated README and added cache logic for save S... [montylounge]
directory basic/ Thu Oct 15 17:10:07 -0700 2009 fixed import issue [montylounge]
file setup.py Wed Apr 22 20:55:42 -0700 2009 adds rudimentary setup.py and moves apps inside... [lincolnloop]
README.rst

Django Basic Apps

Simple apps for Django projects.

To install any of the apps listed simply create a folder on your PYTHONPATH named 'basic' and place the apps you wish to use in that folder. Then added basic.<app_name> to your project's settings.py file. (replace <app_name> with the apps you wish to use, naturally).

Below are a list of per app dependancies:

Dependancies

Inlines

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.

An example of the markup is:
<inline type="media.photo" id="1" />

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 }}