0
votes
3answers
48 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 …
2
votes
2answers
31 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
0answers
5 views
How to add a custom view to the Django admin without having a model in the application
I have an application without any models, but with some custom admin actions. Now I want to add a custom admin view to support the custom admin actions. In order to make the use of the application …
1
vote
4answers
77 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 …
0
votes
1answer
42 views
Django, Cannot assign None, does not allow null values
i have this models.py
import datetime
from django.db import models
from tinymce import models as tinymce_models
from filebrowser.fields import FileBrowseField
class ItemWithMedia(models.Model):
…
0
votes
1answer
55 views
What to use for tagging in Django 1.1
Unless I'm missing something, it seems django-tagging (0.3) doesnt work on Django 1.1.x. I was having issues then search around and it seems to be the general concensious.
What are other people …
1
vote
1answer
17 views
Hot to add the ability to search in UserProfile to UserAdmin in Django | search_fields w/ ForeignKey
Hi,
I'm using Django's User management in combination with UserProfiles that are linked to the User model with ForeignKeys. Now, I'd like to make fields from the users' profiles searchable from the …
0
votes
1answer
11 views
Django: Verbose name of related model not translated
Hi all,
I am using ugettext to translate a Category model's verbose_name. This works fine in admin when adding new objects, however, when using Category as in a one-to-many relationship with Post, …
0
votes
2answers
27 views
Inline multiple one-to-one fields in Django admin
I cannot get the admin module to inline two same field models in one-to-one relations. To illustrate it, I've made the following example, a model Person uses two addresses:
class …
0
votes
2answers
35 views
Django Admin “Edit Selection” Action?
I'd like to write a django-admin action (for use when the user selects zero or more rows) that will allow them to edit the selected items as a group. I only need to edit one of the items in the model …
1
vote
2answers
78 views
the default “delete selected” admin action in django
Hello, how can I remove or change the verbose name of the default admin action "delete selected X item" at the django admin panel?
Thanks
0
votes
1answer
24 views
Django limit_choices_to at circular relation
Hi,
I've implemented a circular OneToMany relationship at a Django model and tried to use the limit_choices_to option at this very same class.
I can syncdb without any error or warning but the limit …
0
votes
1answer
14 views
Django: Altering model fields from admin views
Hi all,
I would like to know how you can change a model's field's parameters, not during model initialisation, but from a model admin. For instance, I would like to make either field "foo" or "bar" …
0
votes
1answer
23 views
Column/field level permissions in Django admin site?
Is it possible to implement column level permissions per user in the Django admin site?
Its a small project and I only need two groups of permissions.
In the docs I cant find anything out of the box …
0
votes
1answer
37 views
Django: Serving admin media files
Hi!
I am trying to serve static files from another domain (sub domain of current domain).
To serve all media files I used this settings:
MEDIA_URL =
'http://media.bud-inform.co.ua/'
So when …
