Changes between Version 2 and Version 3 of DjangoWarts


Ignore:
Timestamp:
Jun 5, 2012, 11:49:36 AM (12 years ago)
Author:
Luke Plant
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoWarts

    v2 v3  
    2121Although 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
    2222
     23== Limited ORM ==
     24
     25The 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
Back to Top