Re: Django and the Eyjafjallajökull eruption

2010-07-04 Thread Massimiliano della Rovere
Could a poll on the mailing lists (and djangopeople.net) be a way to know how important for the django programmers View permission in admin will be? On Sat, Jul 3, 2010 at 09:36, Russell Keith-Magee wrote: > On Fri, Jul 2, 2010 at 7:03 PM, Helgi Borg wrote: >> Remember the Eyjafjallajökull erup

search_fields (engine) backend call: where is it?

2010-06-29 Thread Massimiliano della Rovere
I do not know if this request is too userish for this mailing list, if so please take my apologises :) I'm trying to modify the default search engine in the django admin interface so that is can search metadata too like values depending on sql COUNT() using google style prefixes in these cases or

django.contrib.admin.ModelAdmin.formfield_for_manytomanyfield

2010-06-28 Thread Massimiliano della Rovere
Trying to solve (and it is solved now) my problem I found the undocumented formfield_for_manytomany in contrib/admin/options.py I think it is noteworth and I think it should be mentioned along with http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.formfield_for

Re: Feature Request

2010-06-22 Thread Massimiliano della Rovere
Anyway using this method I can't sort columns any more. This is why I was suggesting having links created by the framework: callable aren't sortable. On Mon, Jun 21, 2010 at 15:37, Karen Tracey wrote: > On Mon, Jun 21, 2010 at 4:37 AM, Massimiliano della Rovere < > ma

Re: Feature Request

2010-06-21 Thread Massimiliano della Rovere
thanks :) On Mon, Jun 21, 2010 at 15:37, Karen Tracey wrote: > On Mon, Jun 21, 2010 at 4:37 AM, Massimiliano della Rovere > wrote: >> >> Anyway, my idea is the following: >> reference fields shown in the change list page (not change view) shown >> as links to

Feature request: A view permission for the admin interface out of the box.

2010-06-21 Thread Massimiliano della Rovere
With the new possibilities offered by read-only fields in the admin interface it would be really convenient to use the admin interface even for users having not full rights to alter a model. An example is in the software I am writing: a person can add his own drafts and propose them to be converte

Re: Feature Request

2010-06-21 Thread Massimiliano della Rovere
executable.allow_tags = True, but doing so one cannot put this field in the list_filter tuple. On Mon, Jun 21, 2010 at 09:57, Simon Meers wrote: > > On 21 June 2010 17:49, Massimiliano della Rovere > wrote: > > If I understood correctly, these patches are related to the change view of > &

Re: Feature Request

2010-06-21 Thread Massimiliano della Rovere
If I understood correctly, these patches are related to the change view of the instance, not to che change list view (the page where instances are listed). On Sat, Jun 19, 2010 at 15:11, Simon Meers wrote: > > EmailField, UrlField, Foreign Key, OneToOneField and ManyToManyField > > clickable in

Feature Request

2010-06-18 Thread Massimiliano della Rovere
EmailField, UrlField, Foreign Key, OneToOneField and ManyToManyField clickable in the admin changelist interface of Django 1.3: if you click you are redirected to: - Foreign Key, OneToOneField and ManyToManyField: the change page of the linked object - EmailField, UrlField as in a web browser --