Questions tagged [django-inplaceedit]

Django application that allows you to inline edition of some data from the database

Click here for an introduction.

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 http://www.gnu.org/licenses/lgpl.html

You can get the bleeding edge version of django-inplaceedit by doing a clone of its git repository:

git clone git://github.com/Yaco-Sistemas/django-inplaceedit.git

9 questions
3
votes
1 answer

Is there a way to use django-inplaceedit to do in-place editing of a column in django-tables2 TemplateColumn?

I tried to make a state_template.html with {% load inplace_edit %} {% block extra_header %} {% inplace_static %} {% endblock %} {% inplace_edit "action.action_state" %} And tables.py has: action_state =…
Hec
  • 824
  • 1
  • 5
  • 24
1
vote
0 answers

Django-inplaceedit VariableDoesNotExist

I have a simple template {% extends "layout/index.html" %} {% load inplace_edit %} {% inplace_edit "category.name" %} {% for item in items %} {% inplace_edit "item.title" %} {% endfor %} my views.py def category(request, category_id): …
Treon
  • 11
  • 4
1
vote
0 answers

Django-inplaceedit static files not found when deployed on AWS

Long time listener, first time caller so let me know if I'm missing any info. I currently have an AWS EC2 instance running a Django application. My current task has been to perform in-place edits on a table which I have used django-inplaceedit (v…
aydow
  • 3,673
  • 2
  • 23
  • 40
1
vote
2 answers

How to do django inplace-edit along with AJAX based django endless-pagination

AJAX based django endless-pagination has 2 templates: 1. The main issue_detail.html 2. The pagination template issue_detail_page.html In the base.html template, right before extra_header block I have: {% inplace_static %} I try to do the…
1
vote
0 answers

Django-inplaceedit and tinyMCE not staying in edit mode and I am unable to figure out how to debug

When I edit a plain text item using the tinyMCE adaptor things work good, but after that the text is uneditable via inplaceedit. For example if I start with: some unformatted text then I can double click and edit it, but if it saves with any kind…
user1026169
  • 5,345
  • 5
  • 21
  • 35
1
vote
1 answer

Can't get django-inplaceedit to work

The top of my HTML template contains: {% load inplace_edit %} Header part contains: {% inplace_static %} Then in my body contents I am doing: {% inplace_edit "action.action_state" %} But it's not working. I have…
Hec
  • 824
  • 1
  • 5
  • 24
0
votes
1 answer

TinyMCE not wrapping around entire section

I have a textarea model field, that you can edit without admin using Django's inplace edit. The inplace edit also uses a TinyMCE adaptor. When clicking on the textarea in Chrome, the TinyMCE text editor wraps around only like two thirds of the…
TJB
  • 3,706
  • 9
  • 51
  • 102
0
votes
1 answer

django-inplace edit remove hint at top

I just started using the django-inplaceedit using latest version. It works great. But I want to remove the hint that it shows when showing editable items - 'Enable Edit Inline'. Is there any easy way to remove it? BTW I searched the documentation…
Subodh Nijsure
  • 3,305
  • 5
  • 26
  • 45
-2
votes
1 answer

django inplaceedit testing project

New to django… Since a month i'm trying to follow this tutorial without success. When i syncdb i get following error: (virt-inplaceedit)Mac:testing manuelstrasser$ python manage.py syncdb Traceback (most recent call last): File "manage.py", line…
Lepus
  • 567
  • 6
  • 22