=========================

Inplace Edit Form is a Django application that allows you to edit inline any data from a database

It is distributed under the terms of the GNU Lesser General Public
License <http://www.gnu.org/licenses/lgpl.html>

=========================

== Depencies ==

<script src="/media/js/jquery-1.4.2.min.js"></script>

== How to install ==

=== In your base.html ===

{% inplace_media %} 

{% load inplace_edit %}

or

Where you want utilize

{% inplace_media %} // Only include the scripts and CSSs

{% load inplace_edit %}


 === In your settings.py  ===

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',

    ...

    'inplaceeditform',

)

 === In your urls.py  ===
(r'^inplaceeditform/', include('inplaceeditform.urls')),


 === How to use ===

{% inplace_edit OBJECT FIELD|FILTER1|FILTER2...|FILTERN [FORM] %}

Examples:
{% inplace_edit item "summary|safe|truncatewords_html:50" "projects.forms.ProjectForm" %}
{% inplace_edit item "summary|safe|truncatewords_html:50" %}