.. _getting_started: =============== Getting started =============== Information =========== Inplace Edit Form is a Django application that allows you to inline edition of some data from the database It is distributed under the terms of the GNU Lesser General Public License Demo ==== Video Demo, of django-inplaceedit and `Django-inlinetrans `_ (Set full screen mode to view it correctly) .. image:: https://github.com/Yaco-Sistemas/django-inplaceedit/raw/master/video-frame.png :target: http://youtu.be/_EjisXtMy_Y?t=34s Usage ===== Calling `inplace_edit tag `_ you can inplace edit any data from the database. It is important to clarify that the inline edition is not only for text fields, although it may be the more common usage. You can also have inline edition for choices, boolean fields, date and datetime fields, foreing keys, many to many, file and image fields. :: {% inplace_edit "OBJ.FIELD_NAME" %} {% inplace_edit "OBJ.FIELD_NAME|FILTER1|FILTER2|...|FILTERN" %} You only should change this: :: {{ user.first_name }} {{ user.last_name }} to this: :: {% inplace_edit "user.first_name" %} {% inplace_edit "user.last_name" %}