forgive me if this is a bit of a newbie question, I started to learn Django yesterday, and I\'m trying not to get into bad habits, i.e. I am trying to do things \"the django way\" from the start.
I have a question and i want to know if i can mix 2 existing contenTypes together into one custom contenType. I need my own content type with contenType RichTextContent and ImageCont开发者_如何学Cent
I have a model with two foreign keys: class Model1(models.Model): model_a = models.ForeignKey(ModelA) model_b = models.ForeignKey(ModelB)
So, I\'m trying to make a simple call using jQuery .getJSON to my local web server using python/django to serve up its requests.The address being used is:
I am looking at trying to expand my search function for my small project.Right now I have the ability to search using a char field but I want to add a few checkboxes.Some projects have been flagged wi
The site I\'m building uses the standard user management framewo开发者_如何学Gork and the standard comments framework.
ihave a model form as so below class JobForm(ModelForm): class Meta: model = Job exclude = (\'date_added\', \'date_modified\',\'owner\',\'status\',\'tags\',\'slug\',\'winning_tech\',\'completiondate\
I\'m passing the request to the template page.In django template how to pass thelast page from which the new page was initialised.Instead of history.go(-1) i need to use this
I\'m new to Django and was needing some help on a view error i am getting. I wrote a view that will display a data table of \"Groups\" if the request method is GET, or display a form to edit a parti
my question is similar to this question em using geoip to find the latitide and longitude of a user through IP address. i am doing something like this in my views