I\'m just learning django and follo开发者_开发技巧wing a tutorial. I have a Link and a Bookmark. Unlike the tutorial I\'m following, I would like a link to be associated with only one Bookmark, but a
I have an abstract model that keeps an on-disk cache.When I delete the model, I need it to delete the cache.I want this to happen for every derived model as well.
In my Django application I would like the user to be able to change the email address. I\'ve seen solution of StackO开发者_如何学运维verflow pointing people to django-profiles. Unfortunately I don\'t
I have a model \'Test\' ,in which i have 2 foreignkey models.py class Test(models.Model): id =models.Autofield(primary_key=True)
What I want to do is implement submission scoring for a site with users voting on the content, much like in e.g. reddit (see the \'hot\' function in http://code.reddit.com/browser/sql/functions.sql).E
I have a Django view called ch开发者_开发百科ange_priority. I\'m posting a request to this view with a commas separated list of values which is basically the order of the items in my model. The data l
Say I have the unknown number of questions.For e开发者_StackOverflowxample: Is the sky blue [y/n] What date were your born on [date]
I\'m having trouble doing an aggregation query on a many-to-many related field. Here are my models: class SortedTagManager(models.Manager):
My first time with Django and StackOverflow so could do with a little help. A Platform has many Categories and a Category can belong to many Platforms. A product belongs to one Platform and one or mo
I\'m using django orm and templates to create a backgrou开发者_如何学运维nd service that is ran as management command.