help get the value of field from the admin in Django to perform some calculations

2017-12-25 Thread Atef Ouerghi
How can I get the value of field from the admin in Django to perform some calculations -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-user

Re: CSRF protection in admin in Django 1.2

2010-05-17 Thread Spaceman Paul
Seems to only be a problem when my over-ridden view function calls down to the base class view implementation. And indeed an excessive exercise in copy-and-pasting fixes it. It would be nice if there was a clean simple way to turn CSRF off in sub-classed admin sites. E.g: class MyAdminSite(Admi

CSRF protection in admin in Django 1.2

2010-05-17 Thread Spaceman Paul
Hi, I just upgraded to Django 1.2 and am having some problems. My project contains several customised django.contrib.admin sites that offer highly stripped down subsets of admin functionality. These customised sites do not use authentication and are expected to be POSTed to both by users and by e

Re: Admin in Django

2008-11-25 Thread Praveen
Thanks Sadeesh, this is what i wanted..ok let me go to your refered site and follow each step and get back to you.. On Nov 26, 10:19 am, "Rishabh Manocha" <[EMAIL PROTECTED]> wrote: > On Wed, Nov 26, 2008 at 10:00 AM, Praveen <[EMAIL PROTECTED]>wrote: > > > > > > > > > Hi All, i am very new bie o

Re: Admin in Django

2008-11-25 Thread Rishabh Manocha
On Wed, Nov 26, 2008 at 10:00 AM, Praveen <[EMAIL PROTECTED]>wrote: > > Hi All, i am very new bie of Django, i have started work on before 3 > days. > I am following DJango book. I am playing with 6 chapter "Using the > admin interface" > In my urls.py file i set the url for admin > > from django.

Admin in Django

2008-11-25 Thread Praveen
Hi All, i am very new bie of Django, i have started work on before 3 days. I am following DJango book. I am playing with 6 chapter "Using the admin interface" In my urls.py file i set the url for admin from django.conf.urls.defaults import * urlpatterns = patterns('', # Example: # (r'^blog/

Re: Many-to-Many with Intermediate Table Bug in Admin in Django 0.95?

2006-09-30 Thread Paul Childs
Hello Malcom, In cooking up my test I made some changes and did some rebuilding that affected the database so I suspect that the "django_content_type" table got out of sync (I really can't confirm this since I am now at home) I retried, as you suggested, with a clean database at home and there

Re: Many-to-Many with Intermediate Table Bug in Admin in Django 0.95?

2006-09-29 Thread Malcolm Tredinnick
On Fri, 2006-09-29 at 19:27 +, Paul Childs wrote: > Could someone please tell me if this is an unfixed bug in Django 0.95. > If it is I will submit a ticket. > > I created a many-to-many relationship using an intermediate table > similar to > http://www.djangoproject.com/documentation/models/

Many-to-Many with Intermediate Table Bug in Admin in Django 0.95?

2006-09-29 Thread Paul Childs
Could someone please tell me if this is an unfixed bug in Django 0.95. If it is I will submit a ticket. I created a many-to-many relationship using an intermediate table similar to http://www.djangoproject.com/documentation/models/m2m_intermediary/ (see model below.) I am able to successfully ex