Changes between Version 2 and Version 3 of DjangoWarts
- Timestamp:
- Jun 5, 2012, 11:49:36 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoWarts
v2 v3 21 21 Although TEMPLATE_FILE_EXTENSION was removed in [2700] / [2809], some templates have the wrong extension as a leftover from the way it previously worked. django/contrib/admin/templates/registration/password_reset_email.html should be password_reset_email.txt 22 22 23 == Limited ORM == 24 25 The ORM is limited by not having a proper SQL abstraction layer. Use of SQLAlchemy for this might be nice, but would be a big change. 26