Ginger FAQ¶
- FAQ: General
- Why does this project exist?
- What does “Ginger” mean, and how do you pronounce it?
- Is Ginger stable?
- Does Ginger scale?
- Who’s behind this?
- How is Ginger licensed?
- Why does Ginger include Python’s license file?
- Which sites use Ginger?
- Ginger 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 Ginger?
- Why did you write all of Ginger from scratch, instead of using other Python libraries?
- Is Ginger a content-management-system (CMS)?
- How can I download the Ginger documentation to read it offline?
- How do I cite Ginger?
- FAQ: Installation
- FAQ: Using Ginger
- FAQ: Getting Help
- FAQ: Databases and models
- How can I see the raw SQL queries Ginger is running?
- Can I use Ginger with a preexisting database?
- If I make changes to a model, how do I update the database?
- Do Ginger models support multiple-column primary keys?
- Does Ginger 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.
- 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?
- What assistive technologies are supported for using the admin?
- FAQ: Contributing code
- How can I get started contributing code to Ginger?
- I submitted a bug fix in the ticket system several weeks ago. Why are you ignoring my patch?
- When and how might I remind the team of a patch I care about?
- But I’ve reminded you several times and you keep ignoring my patch!
- I’m sure my ticket is absolutely 100% perfect, can I mark it as “Ready For Checkin” myself?
- Troubleshooting