Tagged Questions
0
votes
1answer
21 views
How to display a query set in the django admin?
I wish to over ride the django admin to display a list of recently added events in the admin page. I read about queryset in the docs but it is probably for returning a queryset that can be changed by ...
0
votes
1answer
11 views
Radio Button on Many-to-Many field using Inline ModelAdmin
Heres the scenario :
class Account(model.Model):
acc_name = models.CharField(max_length=50)
class Person(model.Model):
accounts = models.ManyToManyField(Account)
class ...
0
votes
2answers
11 views
How to use the Django admin template for a form?
I want to use the existing Django Admin template for a form of my own. The situation is like there are two models. say A and B and I want a form that displays the details about both the models in a ...
0
votes
0answers
12 views
Django - Weird behavior of User and password in django admin
I have notice something very weird with django admin when creating user. I gave Super User access to a new created user, but when I try to log into admin with it, I cant.
I went to look into the ...
0
votes
2answers
22 views
don´t show image in admin site
I'm trying to show an image in the list display of the admin site.
def boton(self,obj):
return mark_safe('<img src="file:///srv/www/project/static/admin/img/pdf.png" alt="PDF">')
Boton is ...
0
votes
1answer
121 views
Providing admin actions to group members in a multi tenant django CRM application
I am about to start designing a multitenant CRM solution.
The interesting libraries that appear are
the list of libraries that can be used are - https://dpaste.de/vvzWw/ (you can suggest edits if ...
0
votes
1answer
25 views
Intelligently enabling django.jQery everywhere in Django admin site
The problem is, that in base templates of django.contrib.admin application, there is no jQuery and django.jQuery defined, they are appears only on several descendant templates. And I want to enable it ...
0
votes
1answer
15 views
Django Class view - only display if column 'admin' contains 1
I have been working on extending the following project: jquery file upload form & i want to only display items from the database that have the value 1 in a column called admin.
Can someone tell ...
2
votes
2answers
22 views
Django send mail from admin panel
I want to sent email to user's from django admin panel and store the sent mail in database too.I have two usertypes 1.Staff 2. Students. When I select staff and give email, it'll sent email to all the ...
0
votes
0answers
29 views
Difficulty Editing Django Admin javascript Files
I have a Django app with a functioning db and admin page. I am being asked to make some minor changes to the appearance/functionality of the admin page, but I know virtually nothing about javascript, ...
0
votes
0answers
25 views
django admin and inlines
I am having a weird behaviour when I add a booleanfield to a through memebership which is included as an inline into the main model. Once saved, it randomly shows the field as True/False. No matter ...
0
votes
1answer
31 views
post_save signal and relations
I am applying the post_save signal to apply user rights per object, and then filter the queryset accordingly.
My model is like this:
class Project(models.Model):
# Relations with other entities.
...
1
vote
1answer
25 views
Import CSV Utf-8
I'm using this python script for import all the data to my application form a CSV file.
# -*- encoding: utf-8 -*-
#CSV ubication
csv_filename="route"
#django
ruta_django="route"
ruta_project = ...
0
votes
0answers
26 views
created_by and modified_by fields in save_formset (admin)
I want to save the user who created the object and the user who last modified it. it's an inline model so I need to use save_formset
def save_formset(self, request, form, formset, change):
...
0
votes
2answers
31 views
Django making sure user and user profile have same pk
Right now I'm using Django's built in admin system to manage users, to which I've attached a profile to contain additional data using the following:
class Profile(models.Model):
user = ...
0
votes
1answer
24 views
Django polymorphic - StackedInline
I'm a newbie to Django.
So I'm not sure if this is an issue with django-polymorphic or I'm doing something stupid (it's probably the latter! )
I have a PolymorphicChildModel (Snippet) as ...
2
votes
1answer
23 views
Seeking good file-upload app for Django admin site
Im seeking file uploader for general purposes. It means that admin-backend user should be able to upload some files, preferably from any place in admin-site, and use links to this files in other apps.
...
0
votes
0answers
19 views
Django admin changelist - display latest value from related model as a sortable column
I have two models
class Product(models.Model):
sku = models.CharField(max_length=10, unique=True)
name = models.CharField(max_length=50)
...
class StockLevel(models.Model):
product = ...
0
votes
1answer
23 views
Dynamically sort in Django admin
In Django admin,
Is it possible that dynamically sort by field name using url param?
In this way,
https://www.example.com/admin/blog/article/?order=modified_date
...
0
votes
1answer
11 views
Django broken OneToOneField
I have an app running and I made a huge mistake, I've deleted a user from the admin site of my Django app before deleting it's UserProfile.
Now, when I try to see the UserProfiles from the admin ...
0
votes
3answers
17 views
django admin.py for an app
I'm following the tutorial contained here:
http://www.djangobook.com/en/2.0/chapter06.html
The instructions are to create a file called admin.py in the app folder with this code:
from ...
0
votes
1answer
8 views
django admin django.contrib.staticfiles
I'm following the tutorial contained here:
http://www.djangobook.com/en/2.0/chapter06.html
They say that the admin site should look like this:
...
0
votes
0answers
8 views
Translate auth_permission name
The auth_permission Django table contains name field in english for each model
Can add XXX
Can change XXX
Can delete XXX
Is it possible to automatically translate it?
I need a backoffice in ...
0
votes
1answer
23 views
How to get 'change password' functionality with Custom User Model in Django 1.5
In a Django 1.5 project, I've created a custom User model extending from AbstractBaseUser to make the email address the primary key (instead of a username).
How do I get the change password ...
0
votes
0answers
25 views
django is there a way to reuse ModelForm objects with composition? (instead of inheritance)
I have an Address and a Location(lat/long) models which are associated with a number of other models, e.g. every Event object has a foreign key to Address and also to Location. Same goes for the ...
0
votes
2answers
45 views
How to Dynamically Access Fields from Foreign Key in Django Admin
So I have models like this:
class Celebrity(models.Model):
#30+ fields here ...
class HoneyBadger(models.Model):
name = models.CharField(max_length=10)
celebrity_owner = ...
0
votes
1answer
15 views
Need clarification in Django mail sending scenario
I build a mail sending function in django.I did it by referring django Doc .
In doc to specify a email backend,need to add this line in settings.py
EMAIL_BACKEND = ...
0
votes
0answers
14 views
Django-blog-zinnia not displaying admin CSS/Javascript properly
I am having the following problem with Django-blog-zinnia, please see the picture below. My static files are being served on Amazon S3, this includes the CSS and Javascript in the screen shot below. I ...
0
votes
0answers
18 views
format search string in django admin search
I am using the out-of-the-box django admin search on my django model. One of my use cases is to look up an object from a barcode scan. The problem is that the barcodes have a bunch of leading ...
0
votes
1answer
20 views
django admin additional field on changelist page
Well, I believe this is a general question.
Let's say I have a model, called Book, and another model called Author. And Author is the foreign key of Book.
Easy, ha?
On BookAdmin page, I want to ...
0
votes
1answer
20 views
ImageField in Django
I am attempting to build a basic database of song information, regarding artists, songs and albums. On my page for any given album I am attempting to display the album art for a given album. I am ...
0
votes
1answer
36 views
Django admin Trouble saving new records with M2M fields - instance needs to have a primary key value before a many-to-many relationship can be used
Problem Statement:
I am using Django admin to manage many tables, some of which have many-to-many relationships. I am unable to save new records in tables (models) that have manytomany fields defined. ...
0
votes
0answers
19 views
How to customise Django admin for subclasses depending of its type?
I have a simple inheritance at one of the models
class ParentClass(models.Model):
attribute1 = models.CharField()
attribute2 = models.CharField()
......
child_type_choices = (ChildClass1, ...
0
votes
1answer
25 views
Extending Django Admin View not working
Below is the code to extend the ModelAdmin and use our own page. However, regex is not getting accepted. Below further is given the list of regex that the matched, but the one that I try to extend is ...
0
votes
0answers
39 views
Adding edit option to Django ManyToManyField filter widget
I have a pair of models like so:
class Item(models.Model):
name = models.CharField(max_length=100)
def __unicode__(self):
return self.name
class Group(models.Model):
items = ...
0
votes
1answer
16 views
Django Admin: Change URL links in change_list page
I would like to change the URL links in the change_list page from default to something else.
I have gone through the code of Admin and have to say, I need help.
Can anyone help me out???
Example:
...
0
votes
0answers
7 views
how can i filter many to many fields for a child according to that of parent in django admin?
I am not an expert in django.
I have a model like class Person
user = Models.foreignkey(User)
parent = Models.foreignkey('self')
choices = Models.ManytoManyField(Choice)
... ...
0
votes
1answer
16 views
trying to filter choices with models.ForeignKey.limit_choices_to
I am trying to filter the entries shown in the drop down select in the admin page.
class GroupDepartmentMembership(models.Model):
department = models.ForeignKey('department.Department', ...
0
votes
2answers
107 views
How to fix Django admin look?
The admin of my Django application looks like shown below.
Obviously, some stylesheets have been lost and/or corrupted.
Questions:
Which stylesheets are used to render the Django admin in the ...
0
votes
1answer
25 views
django - handling reference model in admin app
I have these 2 models:
class Profile(models.Model):
name = models.CharField(max_length=32, unique=True)
class MappingRule(models.Model):
rule_type = models.IntegerField()
...
0
votes
2answers
41 views
Django problems with id in custom UserModel
I need to use user_id instead id in my custom user model(don't ask why, it's a long story :)).
I try to use code from django example, but when it I tried to log in into admin backend, I got
In ...
0
votes
2answers
20 views
django max folders number per user
I was thinking "Enterprise" :)
In my Django 1.5 project if I will reach the maximum ext4 number of folders
ext3: 31998* and
ext4: 64000
And as far as I know with 63.999 folders there are problems, ...
0
votes
1answer
17 views
Removing drop-downs from inlines in django admin
I'm writing a django program for a school. I have a student model, a schoolclass model, and an enrolment model. The schoolclass has a ManyToMany relationship with student through the enrolment model. ...
0
votes
1answer
19 views
Django Admin Queryset Filter OR
I'm using django-admin and I'm overriding queryset to filter my objects. I was wondering if it was possible to do an OR filter, i.e. return the object if a is True or if b is True.
0
votes
1answer
30 views
Where to place helping functions in Django 1.5
I have a function "GenerateUsername" which returns a random username. I use it in a manager in managers.py, but where would be the best place to have this function? In a separate file called ...
0
votes
0answers
10 views
Disabling johnny-cache in admin
I am using johnny-cache. Is there an easy way to disable it from Admin, but let it work transparently everywhere else?
I have looked in the johhny cache docs - http://pythonhosted.org/johnny-cache/, ...
0
votes
1answer
15 views
BooleanField default value not set when creating a model instance
When creating an instance of a model having a BooleanField my_boolean_field with a default set to True, I get an error:
my_boolean_field is required
Shouldn't it be set to the default value?
...
0
votes
0answers
12 views
Django admin: how do I add first+last name to the 'add user' popup?
Let's say model Role has a foreign key to User. In the Django admin application, I can add a Role object and there will be a drop-down list of Users to link that foreign key to. Or, if User is ...
0
votes
1answer
20 views
Reverse Relation Search Django Admin Interface
Is it possible to do a reverse relation search on the Django Admin interface?
My Django app database schema consists of the following models:
class Tag(models.Model):
title = ...
0
votes
1answer
23 views
trouble with list_display in django. Possibly ForeignKey issue?
I am new to Django and I have not had any luck trying to troubleshoot this issue. What I want is a list of songs that will display the songName, artist and album, but what I am getting is the single ...



