0
votes
1answer
35 views
How to implement objects modification trace
Hi there,
With django admin, we have an history of who altered an object and when. I would like to add an "old value", "new value" to this to be able to roll back if needed.
Plus I would like every …
0
votes
1answer
25 views
Assigning a group while adding user in django-admin
In my application, I have models that have the Users model as a Foreign key, eg:
class Doctor(models.Model):
username=models.ForeignKey(User, unique=True)
...
In the admin site, when adding a …
0
votes
1answer
30 views
Django: Filtering or displaying a model method in Django Admin
I have a model with an expiration DateField.
I want to set up an Admin filter that will allow the user to toggle between "Not Expired" and "Any".
The model method is quite a simple Date comparison, …
1
vote
7answers
76 views
Registered models do not show up in admin
I added a model to admin via admin.site.register, and it does not show up in admin. Sice admin is so "It just works", I have no idea of how to debug this. POinters?
0
votes
0answers
45 views
Django admin search functionality
I have a simple database in django with SQLite and now I want to improve it with a better search capability (I will create a new project with new models). I would like to ask about how to plan and go …
0
votes
2answers
61 views
Django: ManyToMany Inline Admin view error
Here are the model definitions:
class ItemBrand(models.Model):
name = models.CharField(max_length = 30, unique = True)
def __unicode__(self):
return self.name
class WantedItem(models.Model):
…
1
vote
1answer
37 views
django admin permissions - can edit user but can’t edit his permissons - how to do it?
I gave the editors such permissions:
auth | user | can add/change user - ON
auth | permissions | can add/change permissions - OFF
Still, when editing, they can change their permissions (and allow …
0
votes
1answer
24 views
Differentiating Permissions in the Admin Between Editing and Viewing a Pop-Up
I have a Posting app which has, as an inline, FKs to a Gallery object. The idea being that while making a Posting, a user can click to add a Gallery object to the Posting. For that purpose, I am using …
2
votes
2answers
70 views
Adding custom JS to a django admin field
In a django application I have the following model:
class Appointment(models.Model):
#some other fields
#address fields
zipcode=models.CharField(max_length=5)
…
0
votes
3answers
71 views
Allow null in foreign key to user. Django
I have this model
class Vacancy(models.Model):
user = models.ForeignKey(User, null=True, blank=True, default = None)
name = models.CharField(max_length=64)
When in admin i try to creat a …
0
votes
2answers
40 views
Django admin has no style
Hi there,
I have just moved my django site on my staging server, and the admin side of the site has no styling with it, when previously in local development it was fine, I read somewhere that I need …
1
vote
4answers
89 views
Django, how to generate an admin panel without models?
Hi, I'm building a rather large project, that basically consists of this:
Server 1:
Ice based services.
Glacier2 for session handling.
Firewall allowing access to Glacier2.
Server 2:
Web …
1
vote
1answer
32 views
Change field in Django Flatpages Admin
Using Flatpages with the default admin, I need to change the template field from a text input with to select or radio with predefined choices. It's easy to do this with one of my own apps - just use …
0
votes
1answer
23 views
How to add django-db-log models to admin panel?
Just installed django-db-log module and trying to make it work properly. 'python manage.py syncdb' command created databases, it seems like logging works, but there is nothing about it in admin panel. …
0
votes
2answers
26 views
Django on Webfaction: Serving static admin media files - configuration
hi folks,
I having trouble serving Django's static admin files on webfaction.
Here's how I'm currently set up:
I've created a 'Symbolic link to
static-only app', and provided the
link to Django …
