Tagged Questions
0
votes
2answers
35 views
'NoneType' object has no attribute 'user'
models.py
class Report(models.Model):
user = models.ForeignKey(User, null=False)
photo_files_attached = models.BooleanField('Photos', default=False)
views.py
def media(request):
user = ...
0
votes
1answer
27 views
Django image file not getting uploaded
models.py
class Report(models.Model):
user = models.ForeignKey(User, null=False)
photo_files_attached = models.BooleanField('Photos', default=False)
forms.py
class ...
0
votes
2answers
19 views
django many to many admin shows all and not associated items
I have an object structure that looks like so:
Customer -- one to many -- Locations
Locations -- many to many -- Departments
Departments -- one to many -- Objects
here is my models.py (my ...
0
votes
1answer
36 views
How to validate number in django
I am learning Django,looked into django validation but the below type i want.searched in google no result.
In my app,their are two character fields,i want it to be validate so that the conditons are,
...
0
votes
2answers
52 views
Thumbnail now showing in django admin list view
I have created a basic file upload app and i'd like to be able to view a thumbnail of the image on the django admin list view. I've tried implementing the code on this blog post - ...
1
vote
1answer
23 views
QuerySet confusion in Django Admin
Very new to Django/Python, and I've hit a brickwall after reading tons of documentation and posts regarding this issue...
So I'm working on a simple Django app that has a SQLlite database/table of ...
2
votes
1answer
35 views
TypeError, 'Class object' object is not subscriptable
I'm trying to add an "event" in the admin and get this error:
TypeError at /admin/sms/event/add/
'Contact' object is not subscriptable
models.py:
class Contact(models.Model):
users = ...
0
votes
2answers
26 views
django error when upload image in admin panel
When i try upload image in admin panel i get message:
'tuple' object has no attribute 'startswith'
#models.py
class Category(models.Model):
title = models.CharField(max_length=255)
slug ...
1
vote
0answers
25 views
Infuriating Django file upload behavior
I have lost a crazy amount of sleep trying to figure out an infuriating behavior in the django admin. It has to do with a file upload. Using the default FileField, an upload from the admin page for ...
-2
votes
1answer
45 views
Django: Define in new model inside anothe model
I wan to know about how can I define a new model within another model. if it is not possible , how can I give another model link within another model? can someone give a example code?
Update
this my ...
2
votes
2answers
85 views
Custom User Model error
I'm trying to set up my custom user model in Django. The reason is that I want to use email as the username, and remove the username field entirely. I've run into a error, that I just can't figure ...
2
votes
2answers
87 views
Django : how to display actual objects in admin
I have a model defination as follows:
class Artist(models.Model):
"""Model class to record Artist"""
artist_name = models.CharField(max_length=200)
artist_id = ...
0
votes
1answer
25 views
how to create the filter in entries before saving to the database?
How will I do it? I'm new in Django. I've read already a lot but still incomprehensible to me. I'm creating a subjects enrolled model. And I wanted it to be filtered this way:
If student_id exist ...
0
votes
1answer
15 views
Newbie here. How will I validate in the admin page the subjects enrolled will not be duplicated in the entries?
Here's my model.py
class SubjectsEnrolled(models.Model):
student = models.ForeignKey(Student)
STATUS = (
('1', 'Passed'),
('2', 'Failed'),
('3', 'No Grade'),
('4', 'Incomplete'),
)
...
0
votes
0answers
15 views
AttributeError: 'AlumniResponseFormFormSet' object has no attribute 'new_objects'
I'm using the Django admin and trying to make some changes to a related object that is mapped as an InlineModelAdmin object. I'm trying to do this using the save_related(self, request, form, ...
1
vote
1answer
28 views
Django MPTT Giving DatabaseError When Saving
I have installed MPTT for Django, put it in "installed apps," set up my files, and synced my database. My model shows in admin, but when I click save after trying to add a category I get the following ...
0
votes
1answer
42 views
Export user data with django in django-admin to CSV
I need to export to csv users of my database, so I have this more or less clear (https://docs.djangoproject.com/en/dev/howto/outputting-csv/), but what I need is to select which fields are exported ...
0
votes
2answers
23 views
Django : How to retrieve an extra-field defined in admin for a model in a pre_save signal?
I've overloaded admin form for a model by adding an extra-field
class MyModelAdminForm(forms.ModelForm):
password = forms.CharField(widget=forms.PasswordInput(), required=False)
class Meta:
...
0
votes
1answer
39 views
Django Multiple Authentication Backends Based On Status
I was wondering how to tell Django which authentication backend to use based on if the user is marked as staff or if they are not.
Can this be done?
0
votes
1answer
27 views
Django: Order AdminModel by Custom Property
I have a model with a property that I'd like to have the adminmodel ordered by.
class StoreAdmin(admin.ModelAdmin):
list_display = ('user', 'total',)
admin.site.register(Store, StoreAdmin)
...
0
votes
0answers
29 views
Autocomplete Lookup Field: link doesn't show up
Can't figure out why there is no link to open a new window to select objects. Here is the code:
class CircuitAdmin(admin.ModelAdmin):
raw_id_fields = ('firmware', 'manufacturer')
...
0
votes
1answer
24 views
Django __unicode__ extended Auth_User model
I'm extending a the auth.models.User but I'm having troubles to implement the __unicode__ methode.
from django.db import models
from django.contrib.auth.models import User
class ...
0
votes
1answer
20 views
Model objects filtering doesn't work
I try to filter objects for foreign key field in my admin class for Circuit model class with:
def formfield_for_foreignkey(self, db_field, request, **kwargs):
if db_field.name == ...
0
votes
3answers
71 views
Django admin: How to user edit the profile?
I have try to implement the code for edit the Django admin panel. it run without any errors. but it did not updates the relevant data field in database. Here is my code for update the database table.
...
0
votes
2answers
44 views
django staff users manage their own users only
In my Django app a user can register to the site and receive staff_user privileges from the admin.
After that the staff user can create and manage some other users (normal users) using default django ...
0
votes
0answers
38 views
django model design and auto update field
I'm designing a football database with the following model structure to be manually updated by using Django admin site. I would like to ask two questions:
(a) The way I design Inline Booking and Goal ...
1
vote
1answer
53 views
Django staff users closed groups
I'm developing a django project for small organizations.
The organization can register to the site (marked as staff user by site admin), create new users and new services for other registered members. ...
0
votes
0answers
36 views
How to make a user in the administrator view only the content created by the same? django
I am implementing user can manage, and could achieve only create new users without the staff, super administrator, groups, permissions, but I can not make users see only the make, do not see the users ...
0
votes
1answer
23 views
Adding extra functionality to Django Admin
It's a fairly simple idea, but I'm not sure where I should start reading.
All I want to do is add an extra action to a model in the Django Admin.
For example, I have a basic client management ...
1
vote
0answers
80 views
Django Admin - django-smart-selects OR Many to Many dynamic filtering with Foreign Keys
Would like to ask how to achieve dynamic filtering in Admin. I know how to use django-smart-selects in admin but it works I guess only for FK not for many-to-many models.
I would like to achieve when ...
0
votes
2answers
30 views
Can I use Dango model function as a field in admin?
I have a model function that returns a numerical value. I would like to be able to filter and sort by that value. When I tried adding it to list_filter Django complained that the model had no such ...
0
votes
1answer
45 views
django: data not save in db when using two models and two form in one template
I have difficulty saving my form into db. Every time I click on save it didn't save in db/admin. Can't seem to figure it out. I hope somebody out there can help me with this.
This project is about ...
0
votes
1answer
54 views
How to prevent DateField record addition for past days in Django
If I have a DateField() field in a model in Django, how can I prevent adding entries for dates older than today?
I can do it on the views.py level, but it would still be exploitable from the Django ...
0
votes
0answers
27 views
How to create a radiobutton in the admin panel to choose if a new Employee is a Manager or a Coder
I'm New on Django and so I play some example to learn. In one of them, I have a models.py with a class Employee, Manager and Coder.
Here is an example code:
class Employee(models.Model):
fn = ...
0
votes
1answer
54 views
Conditionally override the model Django admin successfully saved message
I am overriding the save method on a Django model. There are some cases where I do not save the model. In these cases, I can't seem to be able to figure out how to conditionally override the "The ...
0
votes
0answers
27 views
Django admin: 2 modelamins using same inlines
I am going to try to be as clear as possible and I hope someone will understand my situation. The best way to understand my question is to actuallly start a project with my example models/admin. Also ...
1
vote
0answers
78 views
Django custom field with sub fields
I was following this articles to have 2 columns per 1 field , so my custom field code is something like this :
class GeopositionField(models.Field):
description = "A geoposition (latitude and ...
0
votes
1answer
25 views
object has no attribute 'result_count'
I'm planning on extending Django's change_list template. Before doing so, I want to ensure I can at least populate the default one.
I'm having difficulty passing the proper information to a copy of ...
1
vote
0answers
55 views
models.Meta.ordering vs ModelAdmin.ordering — How to reclaim performance after Meta.ordering test?
Setup
I had two Django (1.4.2) models like so:
class CoreData(models.Model):
cdid = models.AutoField(primary_key=True,editable=False)
name = ...
0
votes
0answers
36 views
How to access ModelAdmin methods
I have 03 models that I want to group onto a change list template. Rather than reinventing the wheel, I am trying to figure out how to access their ModelAdmin.get_changelist() method from my view.
...
1
vote
1answer
32 views
Django complains about field not being unique on editing an entry
models.py
class SwagKey(BaseModel):
key = models.CharField(max_length=255, unique=True, blank=False)
keytype = models.CharField(max_length=255, default="tshirt")
user = ...
0
votes
1answer
92 views
Model inherited from AbstractUser doesn't hash password field
I have a model that is inherited of AbstractUser, something like this :
class Driver(AbstractUser):
dni = models.CharField(max_length=8,validators=[validate_dni],unique=True)
license = ...
0
votes
1answer
30 views
add custom user permission in django
i have the following code in my models.py
from django.db import models
# Create your models here.
class LabName(models.Model):
labsname=models.CharField(max_length=30,unique=True)
...
1
vote
1answer
232 views
Django admin inline display but foreign key has opposite relation
class One(models.Model):
image = models.ImageField(upload_to="images")
summary = models.TextField()
def __unicode__(self):
return self.summary
class Two(models.Model):
image ...
0
votes
1answer
25 views
Choose object and then another object related to this
It's quite hard for me to explain what i need with words so I here is some code:
class Configuration(models.Model):
name = models.CharField(max_length=250)
firmware_version = ...
1
vote
0answers
52 views
Add extra data to choices in Django Admin
I have something like the following:
class Destination(models.Model):
name = models.CharField
picture = models.ImageField
def __unicode__(self):
return u"%s" % self.name
class ...
0
votes
1answer
64 views
django model: check relation before saving the object
I have django model consists of two class annualReport and annualReportAttachment
The relation between the two models is oneToMany. In the admin form I need to validation that the user has uploaded ...
0
votes
1answer
207 views
Django admin - Foreign key to display its values (not inlines)
earlier this week, I asked this question about having foreign keys in your main model from your subclasses: Django Form With Foreign Key
I used the answer given to make a model and sub-models (code ...
0
votes
2answers
94 views
Form in Django Admin for “notes” or “comments” on models
Basically I want a way to have the admins leave comments on the model being viewed. Let's say we have a model Car which I have registered within the admin site and I want to allow the other admins to ...
2
votes
1answer
90 views
Django debug toolbar issue saving more than once in the admin
Driving me crazy please help....
In the admin when I save a new project it saves the same thing 3 times! Can anyone spot why? this only happens with the Django debug toolbar installed running Django ...




