I think inplace edit functionality could be very useful. You can take a look
to this Django application:

https://tracpub.yaco.es/djangoapps/browser/inplaceeditform/trunk/inplaceeditform

For any model like that:

class Book(models.Model):
    title = models.CharField(max_length=200)
    body = models.TextField()

you can put a hidden inline editor (activated by dobleclicking label), with
this sentences:

{% inplace_edit book "title" %}
{% inplace_edit book "body" %}

This create a default model form for Book object. Also, you can redefine a
custom model form.


Regards,
Manuel Saelices.

On Tue, Mar 31, 2009 at 9:53 AM, zain <z...@inzain.net> wrote:

>
> I'm applying for the GSoC with some thoughts to generally improve the
> admin interface. So far, I have the following ideas:
>
> 1) An autocomplete widget
> 2) Drag & Drop support for ordered relations
> 3) Foreign Key traversal to see and modify models referenced to by
> ForeignKeys inline
> 4) Refactor the admin's Javascript to use JQuery for maintainability
>
> Do you have any other ideas for features and fixes to improve the
> admin interface?
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to