0
votes
3answers
105 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 …
0
votes
7answers
199 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
279 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
519 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
72 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
2answers
137 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
76 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
269 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
122 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
81 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
69 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 …
0
votes
1answer
44 views
list display
I am storing a image location in my model field named as 'banner'.now in list_display page i want to show that field as a image rather than the name.I have made a function which is the location of …
0
votes
1answer
101 views
bulk action in django
I am using bulk action in my model.I have switched to django1.2 beta. I want to know that when i perform a bulk action on selected data ,it is not shown on 'action list'(recent actions) displayed a …
