unt-libraries / django-nomination

A Django application for nominating URLs by project.
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

Upgrade to Django4 #112

Closed gracieflores closed 1 year ago

gracieflores commented 1 year ago

In this app we are introduced to a few more warnings and changes.

We already saw the USE_TZ warning. The variable was not set in the settings, so for now we will assume it will be ok that the default will be True in Django 5. The new warning is for forms and formsets. The default template is changing from table.html to div.html. They have a transitional renderer that we can set, but I didn't notice a change when I tested it out.

You can see the warnings in the actions.

gracieflores commented 1 year ago

@ldko @somexpert This is ready for review.