aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-12 23:23:23 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-12 23:23:23 +0300
commit8891e69e711d4a197c3b16183e1c39accbd38b45 (patch)
tree535037b8182a407820f698e2dc1a08beda624da5
parentac02bb0b5b3abbde7dc0386ad687378eb36eb30a (diff)
downloadServo-8891e69e711d4a197c3b16183e1c39accbd38b45.tar.gz
Servo-8891e69e711d4a197c3b16183e1c39accbd38b45.tar.bz2
Servo-8891e69e711d4a197c3b16183e1c39accbd38b45.zip
Fix staticfiles for Django 3
-rwxr-xr-xservo/templates/about.html2
-rwxr-xr-xservo/templates/orders/dispatch.html2
-rwxr-xr-xservo/templates/orders/gsx_repair_form.html2
-rwxr-xr-xservo/templates/orders/list.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/servo/templates/about.html b/servo/templates/about.html
index c8a6521..928712d 100755
--- a/servo/templates/about.html
+++ b/servo/templates/about.html
@@ -1,4 +1,4 @@
-{% load staticfiles %}
+{% load static %}
<!DOCTYPE html>
<html>
<head>
diff --git a/servo/templates/orders/dispatch.html b/servo/templates/orders/dispatch.html
index 8802dca..ad65311 100755
--- a/servo/templates/orders/dispatch.html
+++ b/servo/templates/orders/dispatch.html
@@ -1,5 +1,5 @@
{% extends "orders/edit.html" %}
-{% load staticfiles %}
+{% load static %}
{% load servo_tags %}
{% load i18n %}
diff --git a/servo/templates/orders/gsx_repair_form.html b/servo/templates/orders/gsx_repair_form.html
index aa1daf1..68dda21 100755
--- a/servo/templates/orders/gsx_repair_form.html
+++ b/servo/templates/orders/gsx_repair_form.html
@@ -1,5 +1,5 @@
{% extends "default.html" %}
-{% load staticfiles %}
+{% load static %}
{% load servo_tags %}
{% load i18n %}
diff --git a/servo/templates/orders/list.html b/servo/templates/orders/list.html
index 2e5347b..d053925 100755
--- a/servo/templates/orders/list.html
+++ b/servo/templates/orders/list.html
@@ -1,4 +1,4 @@
-{% load staticfiles %}
+{% load static %}
{% load servo_tags %}
{% load humanize %}
{% load cache %}