Django FAQยถ
- FAQ: General
- Why does this project exist?
- What does โDjangoโ mean, and how do you pronounce it?
- Is Django stable?
- Does Django scale?
- Whoโs behind this?
- Which sites use Django?
- Django appears to be a MVC framework, but you call the Controller the โviewโ, and the View the โtemplateโ. How come you donโt use the standard names?
- <Framework X> does <feature Y> โ why doesnโt Django?
- Why did you write all of Django from scratch, instead of using other Python libraries?
- Is Django a content-management-system (CMS)?
- How can I download the Django documentation to read it offline?
- How do I cite Django?
- FAQ: Installation
- FAQ: Using Django
- FAQ: Getting Help
- FAQ: Databases and models
- How can I see the raw SQL queries Django is running?
- Can I use Django with a pre-existing database?
- If I make changes to a model, how do I update the database?
- Do Django models support multiple-column primary keys?
- Does Django support NoSQL databases?
- How do I add database-specific options to my CREATE TABLE statements, such as specifying MyISAM as the table type?
- FAQ: The admin
- I canโt log in. When I enter a valid username and password, it just brings up the login page again, with no error messages.
- I canโt log in. When I enter a valid username and password, it brings up the login page again, with a โPlease enter a correct username and passwordโ error.
- How do I automatically set a fieldโs value to the user who last edited the object in the admin?
- How do I limit admin access so that objects can only be edited by the users who created them?
- My admin-site CSS and images showed up fine using the development server, but theyโre not displaying when using mod_wsgi.
- My โlist_filterโ contains a ManyToManyField, but the filter doesnโt display.
- Some objects arenโt appearing in the admin.
- How can I customize the functionality of the admin interface?
- The dynamically-generated admin site is ugly! How can I change it?
- What browsers are supported for using the admin?
- FAQ: Contributing code
- Troubleshooting