0
votes
1answer
23 views
Django App Not Showing up in Admin Interface
I'm currently moving from my development server to an Apache web production server.
I've tried doing the following just by copying it over and I can login to the admin panel but i …
0
votes
1answer
28 views
Extending the admin panel in Django
I have several objects with some functions that I would like to be able to run via the admin panel. So far, I've not found a way to add them as actions to the admin interface.
Is …
0
votes
0answers
20 views
Weekly-based populating a database with the django admin
I'm building an small django app in order to manage a store employees roster.
The employees are freelancers-like, they have weekly almost-fixed schedules, and may ask for extra one …
1
vote
1answer
35 views
Can Django admin handle a one-to-many relationship via related_name?
The Django admin happily supports many-to-one and many-to-many relationships through an HTML <SELECT> form field, allowing selection of one or many options respectively. Ther …
0
votes
2answers
24 views
‘getattr(): attribute name must be string’ error in admin panel for a model with an ImageField
I have the following model set up:
class UserProfile(models.Model):
"Additional attributes for users."
url = models.URLField()
location = models.CharField(max_length=1 …
1
vote
1answer
17 views
in Django admin how can I know a boolean is set true for the first time only
I have a model that contains a boolean field representing the item's approval or not.
I'd like to send an email when the box is checked.
I understand how to override the save meth …
2
votes
3answers
42 views
Edit Django User admin template
I need to edit the template shown for editing a specific user. I need to display some additional data that doesn't fit in with an include-style.
I apologise for the short question …
0
votes
1answer
23 views
django admin inline formset override save
I have a model that looks like this:
class ProjectImage(models.Model):
big_thumb = ThumbnailField(upload_to='profiles', size=(500, 500))
med_thumb = ThumbnailField(upload …
2
votes
1answer
21 views
Filtering by custom date range in Django admin
Can Django admin site select entries by a custom date range, i.e. using two DateFields with AdminDateWidget? I know that there are date_hierarchy and list_filter properties, but th …
0
votes
2answers
34 views
Country/State/City dropdown menus inside the Django admin inline
I have a city foreign key in by BusinessBranch model. My City model also has a state and country foreign keys for State and County models. I'm having hard time displaying State and …
0
votes
2answers
42 views
how should i store and retrieve images with django on appengine?
I'm using appengine patch with django 1.1 (came with appengine patch).
I have a page with multiple columns and multiple files.
In the admin I want to be able to upload an image and …
1
vote
2answers
38 views
Is there a way to filter a queryset in the django admin?
I'm trying to define an action for a model Bar -- but I only want the list of Bar objects related to a user Foo.
Before I start mucking around in the admin code and passing in a c …
0
votes
2answers
30 views
Is there an easy way to provide a custom django admin action without allowing changes to models?
I have a custom action on a model Foo all set up and ready to go, complete with a new permission I've made.
Problem is, my administrators need the can_change_foo permission to vie …
0
votes
1answer
36 views
How do I customize Django’s Flatpage to display a new field on the change list page of the admin?
In my flatpage admin change list page, mysite.com/admin/flatpages/flatpage/, I can see the fields:
URL
Title
Is there a way to also show the field Site? I associate my flatpag …
1
vote
2answers
19 views
Is there a way to customize how a field looks in the results list?
Is there a way to customize the way a field is displayed in the django admin results list?
For example, I'd like to display an image based on the field value, just like boolean fie …
