0
votes
0answers
28 views
Django admin site reverse ForeignKey inline
I have these models:
(pseudocode)
Course:
ForeignKey(Outline, null=True, blank=True)
ForeignKey(OutlineFile, null=True, blank=True)
Outline:
//data
OutlineFile:
//different …
0
votes
3answers
69 views
Django Admin: not seeing any app (permission problem?)
I have a site with Django running some custom apps. I was not using the Django ORM, just the view and templates but now I need to store some info so I created some models in one app and enabled the …
0
votes
1answer
32 views
Issue with ManyToMany Relationships not updating inmediatly after save
I'm having issues with ManytoMany Relationships that are not updating
in a model when I save it (via the admin) and try to use the new value within a
function attached to the post_save signal or …
0
votes
1answer
35 views
Django admin: Can’t add app to admin
I have installed Django on my host (I use their install version 1.1.1), all is working fine.
I have created some apps and they are registered in my settings.py (I can verify this works when i visit …
0
votes
1answer
25 views
How to set up Django admin.TabularInline on a table with a compount key.
I've essentially got two tables: Page(PK=url) and PageProperty(PK=url+name).
Here is how I have my Models set up:
class Page(model.Model):
url = model.CharField(primary_key=True, …
0
votes
1answer
30 views
Foreign Key relation does not populate in Django admin
Using django 1.0.1 on windows xp and postgres database
I have a very strange problem in the Django admin page. Using the model and admin below, the field "balance" does populate with objects from the …
1
vote
3answers
43 views
Is there a way to express Django admin settings inside the models, instead of admin.py?
Talking about Django 1.1.1. I thought at one time (0.96) the kinds of things put inside of the admin.py file were part of an inner class of the model.
There's a certain beauty in having all of …
0
votes
1answer
32 views
Displaying dates nicely in Django’s admin interface
With methods on your model that return boolean values, you can mark them as boolean so the admin's list displays show the pretty icons, like this example from the docs:
class Person(models.Model):
…
0
votes
1answer
21 views
Validate that atleast one modelfield has value in Django admin
Given the following model, how do I require that atleast one of the two fields has been given a value?
class ZipUpload(models.Model):
zip_file = models.FileField(upload_to="/tmp", blank=True,
…
0
votes
1answer
46 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
55 views
django admin TinyMCE integration
This is weird: I have installed and configured django-tinymce, but it doesn't seem to work with django admin.
this works fine with Safari:
class ArticleAdmin(admin.ModelAdmin):
…
1
vote
7answers
89 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
1answer
34 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
38 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, …
0
votes
1answer
29 views
Skipping delete confirmation in Django Admin
What is the best way to skip the delete confirmation page in the Django admin and go straight to deleting the objects?
Thank you!
