From d7ee58071f4198caf961f12871eaa0506556872a Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Sat, 26 Nov 2022 16:01:34 +0100 Subject: [PATCH] Upgrade to Django 3.2 Not the newest, but still has LTS support until 2024, so that should suffice for now. --- pt/templates/pt/compare.html | 2 +- pt/templates/pt/top.html | 2 +- requirements.txt | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/pt/templates/pt/compare.html b/pt/templates/pt/compare.html index 74d4330..8c5ab01 100644 --- a/pt/templates/pt/compare.html +++ b/pt/templates/pt/compare.html @@ -1,4 +1,4 @@ -{% load staticfiles %} +{% load static %} diff --git a/pt/templates/pt/top.html b/pt/templates/pt/top.html index 0575d85..e1a9c79 100644 --- a/pt/templates/pt/top.html +++ b/pt/templates/pt/top.html @@ -1,4 +1,4 @@ -{% load staticfiles %} +{% load static %} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3bcfddf --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Django ~= 3.2.16 +psycopg2-binary ~= 2.9.5