Search Results

0
votes
3answers
107 views

actions in django

How can i enable or disable actions according to the value of a field.For example In my model I have a status field which can have either of the value 'activate','pending','expired'.I am making a a …
5
votes
4answers
1k views

django admin filter

how can i change the default filter choice from 'ALL'.I have a field named as 'status' which has three values :- 'activate','pending','rejected'.when i use list_filter in django_admin ,the filter i …
0
votes
7answers
214 views

list_filter in admin

DECOM_CHOICES = ( ('N', 'No'), ('Y', 'Yes'), ) class Host(models.Model): hostname = models.CharField(max_length=36, unique=True) decommissioned = models.CharField(max_lengt …
1
vote
3answers
292 views

How to check value transition in Django (django-admin) ?

I have a status field which has 3 values: pending, activated and rejected. If I am changing the value of status I want to have a check that activated cannot be changed to pending. I do not want to …
0
votes
2answers
585 views

django-admin action in 1.1

I am writing a action in django.I want to now about the rows which are updated by the action or say id field of the row.I want to make a log of all the actions. I am having a field status w …
0
votes
1answer
75 views

Collecting additional information in the Django administration page?

on save if user select certain option i want to take user to a page where he can have one more field to be filled and then redirect to admin default page …
1
vote
1answer
345 views

inlines -django

I am having 2 models.i want to have model2 inline with model1 .On the admin page I want to show some fields of model 2 as a inlines and all of them as readonly.ALso when i click on the value of the …
1
vote
2answers
145 views

how to make dynamic form

I am having a status Field which has 3 options 1)activated 2)rejected 3)pending.If user select rejected status then he has to enter reason for rejection else that reason field should be hidden.Or w …
1
vote
2answers
78 views

How to make fields readonly while updating.

I have a form. Once the form is filled I don't want the user to change anything in the form. But the user can see the values. Meaning all the fields are non editable. I can do this by using …
-1
votes
1answer
309 views

django inline

I have made a inline named as Fooinline. This inline was working fine in Django 1.02 but as soon as I upgraded to Django 1.1 it started giving an error: **TypeError at /admin/core/w …
-2
votes
3answers
104 views

view on site

I am using def get_absolute_url in my model. It is giving the wrong "View on Site" link. How can it be corrected? …
0
votes
2answers
129 views

template django

how can i use different template in different application.in a project i have two app 1)Site 2)Ad .I want to use default template in Ad but different in Site..How to ?OR in the te …
0
votes
2answers
84 views

changing options according to the user choice

Hi, In my class I have about 12 fields. One field is status, another is reason. When I go to the edit page in the django admin, I only wan …
0
votes
1answer
102 views

How to store the name of user logged in?

I want to store the name of the user who is currently logged into Django in a custom form. In the admin we can do so by writing modified_by=request.user.username, but how do I do this in my own fo …
0
votes
1answer
73 views

how to disable bulk_action in django 1.1 beta

Hi, I am using django 1.1 beta release. In my project I want to use bulk_action in some models only. How can I disable bulk_action from the remaining models? I want to totally remove action …

1 2 3 next
15 30 50 per page