Django application that adds other useful fields to Django inplace edit
Project description
Inplace Edit Form Extra Fields
Information
Inplace Edit Form Extra Field is a Django application that adds other useful fields.
It is distributed under the terms of the GNU Lesser General Public License <http://www.gnu.org/licenses/lgpl.html>
Requeriments
And other eggs, but it is important: If you want to use one of the fields, you do not have to install its requirements
Installation
After installing Django Inplace Edit
In your settings.py
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', #.....................# 'inplaceeditform', 'inplaceeditform_extra_fields', )
If you want overwrite the adaptors for any case in your project:
ADAPTOR_INPLACEEDIT = {'textarea': 'inplaceeditform_extra_fields.fields.AdaptorTinyMCEField', 'image': 'inplaceeditform_extra_fields.fields.AdaptorImageThumbnailField', 'fk': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteForeingKeyField', 'm2mcomma': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteManyToManyField'}
If you want, you can register these fields in your settings, with other keys:
ADAPTOR_INPLACEEDIT = {'auto_fk': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteForeingKeyField', 'auto_m2m': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteManyToManyField', 'image_thumb': 'inplaceeditform_extra_fields.fields.AdaptorImageThumbnailField', 'tiny': 'inplaceeditform_extra_fields.fields.AdaptorTinyMCEField',}
And after when you want use this specific adaptor you indicate it, e.g.:
{% inplace_edit "content.field_name" adaptor="tiny" %}
Because these fields are not in django-inplaceedit
They have dependece of the other eggs
They are a particular solution
Theese do not work immediately, you have to code them
AdaptorAutoCompleteForeingKeyField and AdaptorAutoCompleteManyToManyField
These fields are dependent of Django Ajax Select. You have to create a channel (lookup)
{% inplace_edit "content.field_name" adaptor="auto_fk", lookup="my_lookup" %}
For more info, visit the doc of ajax select
AdaptorImageThumbnailField
This field is dependent of Sorl thumbnail. You only should indicate the size.
{% inplace_edit "content.field_name" adaptor="image_thumb", size="16x16" %}
It can help you, configure in your settings:
THUMBNAIL_DEBUG = True
AdaptorTinyMCEField
This field is dependent of cmsutils.
{% inplace_edit "content.field_name" adaptor="tiny" %}
Development
You can get the leading edge version of inplaceedit-extra-fields by doing a checkout of its repository:
0.0.1 (2011-12-08)
First version to AdaptorAutoCompleteForeingKeyField and AdaptorAutoCompleteManyToManyField
First version to AdaptorImageThumbnailField
First version to AdaptorTinyMCEField
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-inplaceedit-extra-fields-0.0.1.tar.gz
.
File metadata
- Download URL: django-inplaceedit-extra-fields-0.0.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 948f701f1bfc40adfdcf5446901dd3d367c0941635e7ab7eb0595b23f5fc2ba1 |
|
MD5 | 7bffab1403b239b2e1dd9da3180678ed |
|
BLAKE2b-256 | ccedfbc80c9155ca22f36c5f13592264bf7076ab6d7637763271f7d602358a4d |