Tagged Questions
0
votes
0answers
21 views
Appropriate max_length for atom id field?
I am using atom feeds within a Django application, and was planning on using a CharField to represent the id field of an entry. Given that max_length is required, what would be an appropriate length?
1
vote
1answer
26 views
Django one-to-one reverse relationship DoesNotExist
I've got an odd problem here, where my one-to-one relationship doesn't seem to be working in reverse. It's easiest to explain with code.
I have extended the default Django User to add a timezone, as ...
1
vote
1answer
24 views
Representing ManyToMany relation in Django as two multichoices
I have some many2many fields with a lot of options to choose from and I'd like to have two multichoices for each one, on the left the available options and on the right side the chosen ones. Here is ...
1
vote
2answers
34 views
Django: delete related object via OneToOneField
Is there some clever way how to perform delete in this situation?
class Bus(models.Model):
wheel = OneToOneField(Wheel)
class Bike(models.Model):
wheel = OneToOneField(Wheel)
...
1
vote
2answers
27 views
Django custom user model and usermanager
i'm building a web application with Django 1.5. I'm using a custom User model with a custom UserManager.
I followed the instructions and examples of the official Django documentation.
Now, when i'm ...
1
vote
1answer
15 views
User Types In Django using the same login and registration form
I've been hitting my head for the best way to implement this. I want to create two user type in my django site: Free and Premium users. Both users will register through the same registration form and ...
2
votes
1answer
31 views
Django model not saving when calling save()
so i am trying to save a django model, and for some reason i am only getting a 500 internal server error. the thing is,
if i comment the social_auth.save() it works and i can manipulate the
...
0
votes
0answers
35 views
Saving foreign key field for linked model
I have models Client and Requisites. Requisites is OneToOneField for Client. No overwritten save methods and other.
I wonder when attribute requisites_id is set for Client objects.
c = Client()
...
0
votes
1answer
38 views
Are ModelForms in django used only for POSTing?
ModelForms are a nice way to prevent repeating the definitions of models one creates. What I would like to do is take advantage of that feature and use it for more than just processing POST requests. ...
0
votes
1answer
31 views
Missing metaclass in Django 1.5
How do you override a model's metaclass in Django 1.5? I was overriding the metaclass on some models inheriting from an abstract model so I could set appropriate choices. e.g.
class ...
0
votes
2answers
19 views
Get all “grand”-Children of a given Model
im trying to learn python/django at the moment and came across the following problem.
Let's say i have 3 models:
Model Category(models.Model)
name = models.Charfield(max_length64)
Model ...
-1
votes
1answer
23 views
Define a django model which use in a foreign key a specific instance of an other model
Let's take an example for my problem : the models of a blog.
I would have django models like this :
class Category(models.Model):
name = models.CharField(max_length=30)
class ...
0
votes
2answers
51 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 - ...
2
votes
1answer
230 views
Connecting my django app to the redis installation
I have a django app. The app is a normal application. Everything is running fine for me.
I want to implement a leaderboard as of now. Read couple of places that redis helps in doing it. And is ...
1
vote
1answer
49 views
How to set NULL for IntegerField instead of setting 0?
I'm uploading some data from an excel file using xlrd and turning that data into models (with mainly IntegerField values) in Django. My excel file has a bunch of missing data. Unfortunately, these ...
0
votes
1answer
40 views
Removing a file from the server once the entry has been removed [duplicate]
I've created a basic files app in django so clients can upload files and copy the relative url and use it in the content of the website. One of the ideas of the app was once an entry has been removed ...
1
vote
1answer
41 views
TypeError: __init__() got an unexpected keyword argument category
I'm creating a basic app where my client can upload files through the app. It will then provide them with a URL so they can add images/pdf's etc to content in the website. What i'd like to do is have ...
3
votes
2answers
58 views
Why isn't __dict__ a callable
Why are __dict__ and for example __unicode__ not both callable or the other way around?
Django tells me to set a unicode return as a method on an Model, for example:
class Obj(models.Model):
def ...
1
vote
2answers
42 views
In Django, how can I view all the properties of my user?
If I do something like:
print request.user.is_authenticated()
Then True is printed. However
print request.user
just prints the username even though 'request.user' is definitely not just a ...
0
votes
1answer
23 views
Filter django objects based number of foreign references
I have an object that represents a list of items. Each item has a foreign key to this list.
class ItemList(Model):
pass
class Item(Model):
list = ForeignKey(ItemList, related_name="items")
...
1
vote
0answers
19 views
Using Django ORM inside Tornado, “syncdb” doesn't work
I'm using Django ORM inside Tornado, and everything is going well except that "syncdb" doesn't work.
So this is my directory structure:
APP_NAME/
APP_NAME/
models.py
settings.py
...
0
votes
1answer
28 views
Django - Functions in models and views don't return correct Boolean value
I am creating a django app/website and am in trouble with some Boolean results I don't understand.
In my models, I have a Article class with 2 functions :
class Article(models.Model):
#some vars
...
0
votes
2answers
17 views
Django Models Create a Coustom Query
I am trying to get all the post in a thread before or on a certain time. So how do I get Django to allow me the privilege to enter my own queries?
This is the closes I could come using Django's model ...
1
vote
2answers
47 views
Is there any more elegant way to add a value sensitive unique together constraint in Django Model?
Here is the problem:
I have a model like this:
class UserBook(models.Model):
user = models.ForeignKey(User)
book = models.ForeignKey(Book)
is_active = models.BooleanField(default=False)
...
0
votes
1answer
186 views
How to cast model to instance of its descendant proxy model
I have a proxy model.
Now I would like to cast from a given instance of its parent model to an instance of the proxy.
I have this code in my manager:
def from_parent_user(self, user):
instance ...
1
vote
1answer
42 views
Django custom manager get_queryset() not working
I can't make my custom manager work...
class PublicArtigoManager(models.Manager):
def get_queryset(self):
return super(PublicArtigoManager, ...
1
vote
0answers
40 views
Changing the log level
I have set the log level as WARN in platform_settings.py and loggings.py file.
I have also changed the initial value to WARN in forms.py with (self.fields['log_level'].initial='WARN').
Now, if I ...
0
votes
1answer
29 views
Django South editing field names in model with --auto --update
In the South Docs,when changing the name of a field it wants you to use ./manage.py schemamigration southtut --auto --update. When I use it I get the following./manage.py: error: no such option: ...
0
votes
1answer
36 views
django query to use annotate with a filter for each annotations
I have the following database model -
class ObjectDetail(models.Model):
title = models.CharField()
img = models.ImageField()
description = models.TextField()
uploaded_by = ...
0
votes
2answers
25 views
how do i get the string inside the charfield in django?
I'm trying to create a user in my model by calling the create_user function but I want it to have properties of what the user enters into my model. How do I do this?
This is what I have:
class ...
0
votes
1answer
29 views
Django error: “Accessor for field clashes with related field”
When I run "python manage.py runserver", the following 2 error messages are printed 4 times:
transcription.treatment: Accessor for field 'treatment_ptr' clashes with related field ...
0
votes
0answers
28 views
Django accessing related fields prefetched by prefetch_related
So I have this loop:
for t in ts.prefetch_related('u__v_set'):
bla = t.x
...
Running this code in debugsqlshell I see three (constant amount in general) sql statements:
one getting all ...
2
votes
2answers
33 views
Django lookup tables and fields
Can I look around in a database with Django? I mean outputting a list of all tables, all fields in tables and all objects in a specific table?
I know how to build models and lookup objects, but can I ...
0
votes
1answer
37 views
Django - overriding save/delete functions of the model vs doing it in the view
I have a model Quote, which has a foreign key to the user model. A user can have between 0 and 10 quotes, and if there s/he has one or more quotes, one of them should be the primary quote(primary is a ...
0
votes
0answers
32 views
Django Admin delete image
I Have the following function by delete the image in the admin Django when you check the checkbox and after save the image.
This checkbox appear, when you go to the modify the register the field ...
0
votes
1answer
28 views
How to Stored Multiple Select option Database
I need to store multiple select option data to the database.I try with that but it takes only one option. I given the code below.
Templates
<select name="qualification" multiple>
<option ...
0
votes
2answers
24 views
Manage pages in database in Django 1.5
Is it possible to organize your urls.py with a Django model? I would like to create a admin interface to manage pages, and output the pages as links in the navigation, but I will run into problems ...
0
votes
1answer
51 views
Multiple Django Model Queries Changing Independently in One View
I have three models being called separately -- one in my first column, the second in my second column, and the third in my third column. The first is the categories and will stay the same. The second ...
0
votes
1answer
33 views
Incorporate third-party module into Django models
I'm creating a product ID conversion app. I have two models representing the two ID styles:
class Id1(models.Model):
number = models.CharField(max_length=10)
converted = ...
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
0answers
23 views
Django model method - create_or_update
Similar to get_or_create, I would like to be able to update_or_create in Django.
Until now, I have using an approaching similar to how @Daniel Roseman does it here. However, I'd like to do this more ...
0
votes
0answers
78 views
Django - Multiple Databases
So I'm somewhat new to the whole Django databases and maybe I just don't fully understand the Django routers talked about here:
...
0
votes
0answers
9 views
How to set required translations using django-transmeta?
If you use django-transmeta in a translatable field marked as unique (e.g. name), then you'll have problems with the translations in the following case:
As they aren't required, when the user creates ...
1
vote
0answers
42 views
Django with MySQL: DatabaseError (1406, “Data too long for column 'name' at row 1”)
I have a Django webapp, currently been testing with SQLite but now want to deploy and use MySQL, and I'm getting this error.
I am getting this error right when using python manage.py syncdb:
You ...
0
votes
1answer
29 views
When to use ManyToOne and ManyToMany relationships
The below is a database of colleges, and its ratings. The below is how I thought
Each Class (Batch, ex: Batch of 2009) belongs to a Department
Each Department (ex: department of pharmacy) belongs to ...
1
vote
2answers
103 views
Django model naming conventions
I have a pretty stupid question about model naming conventions in Django.
Imagine a farmstead which has buildings which have rooms.
Farmstead --> Buildings --> Rooms
With Farmstead it is ok, let's ...
3
votes
2answers
520 views
Django - How to get admin url from model instance
First of all, thank you for reading my question.
I'm trying to send an email to a user when a new model instance is saved and I want the email to include a link to the admin page for that model ...
4
votes
1answer
846 views
Single Django model, multiple tables?
I know this exact same question has been previously asked, but I was hoping for a 'better' answer (that does not involve modifying class attributes at runtime). This was the question:
Single Django ...
3
votes
2answers
2k views
Django objects.filter() values_list() vs python list comprehension for __in query
I have a quirk(?) with Django queryset filtering:
ipdb> MagazineIssue.objects.filter(id__in=l_magazines.values_list('id'))
Out[0]: []
or
ipdb> ...
0
votes
1answer
969 views
django on a vps - getting “model is already registered” when restarting server
asked this question over the weekend, but for some reason all replies have died. started it again as i now have new information
when i restart apache on my vps, i get
the model "category" is already ...



