Tagged Questions

9
votes
3answers
393 views

models.py getting huge, what is the best way to break it up?

Directions from my supervisor: "I want to avoid putting any logic in the models.py. From here on out, lets use that as only classes for accessing the db, and keep all logic in external classes that …
9
votes
7answers
927 views

Django workflow when modifying models frequently?

Hi gents, as I usually don't do the up front design of my models in Django projects I end up modifying the models a lot and thus deleting my test database every time (because "syncdb" won't ever alter …
8
votes
4answers
781 views

Beginner: Trying to understand how apps interact in Django

I just got done working through the Djano tutorials for the second time, and am understanding things much more clearly now. However, I'm still unclear how apps inside a site interact with one another. …
7
votes
3answers
170 views

Django model fields validation

Where should the validation of model fields go in django? I could name at least two possible choices: in the overloaded .save() method of the model or in the .to_python() method of the models.Field …
6
votes
5answers
610 views

How to pull a random record using Django’s ORM?

I have a model that represents paintings I present on my site. On the main webpage I'd like to show some of them: newest, one that was not visited for most time, most popular one and a random one. …
6
votes
3answers
409 views

How to limit the maximum value of a numeric field in a Django model?

Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField. Although the former can be restricted to the number of decimal places stored and the overall …
5
votes
3answers
231 views

How to add bi-directional manytomanyfields in django admin?

In my models.py i have something like: class LocationGroup(models.Model): name = models.CharField(max_length=200) class Report(models.Model): name = models.CharField(max_length=200) …
5
votes
2answers
765 views

Can you achieve a case insensitive ‘unique’ constraint in Sqlite3 (with Django)?

So let's say I'm using Python 2.5's built-in default sqlite3 and I have a Django model class with the following code: class SomeEntity(models.Model): some_field = models.CharField(max_length=50, …
5
votes
2answers
440 views

In Django how do I notify a parent when a child is saved in a foreign key relationship?

I have the following two models: class Activity(models.Model): name = models.CharField(max_length=50, help_text='Some help.') entity = models.ForeignKey(CancellationEntity) ... class …
5
votes
3answers
3k views

Django signals vs. overriding save method

I'm having trouble wrapping my head around this. Right now I have some models that looks kind of like this: def Review(models.Model) ...fields... overall_score = …
4
votes
3answers
60 views

How to make uniques in Django Models? And also index a column in Django.

This is my simple Django database model. It's for a 5-star rating system. class Rating(models.Model): content = models.OneToOneField(Content, primary_key=True) ip = …
4
votes
2answers
78 views

How to create queues of objects in Django?

I am new to Django and I am trying to build a blog myself. I'm trying to create a feature I've seen implemented in Drupal using the nodequeue module. What I want to do is to be able to create queues …
4
votes
1answer
343 views

Adding attributes into Django Model’s Meta class

I'm writing a mixin which will allow my Models to be easily translated into a deep dict of values (kind of like .values(), but traversing relationships). The cleanest place to do the definitions of …
4
votes
1answer
261 views

Traversing foreign key related tables in django templates

View categories = Category.objects.all() t = loader.get_template('index.html') v = Context({ 'categories': categories }) return HttpResponse(t.render(v)) Template {% for category in categories %} …
4
votes
1answer
238 views

Using a Django custom model method property in order_by()

I'm currently learning Django and some of my models have custom methods to get values formatted in a specific way. Is it possible to use the value of one of these custom methods that I've defined as a …

1 2 3 4 5 15 next
15 30 50 per page