Skip to content

Commit 0378562

Browse files
committed
templates: "load staticfiles" is deprecated in favor of "load static"
Signed-off-by: Jelle van der Waa <[email protected]>
1 parent c7bb768 commit 0378562

33 files changed

+33
-33
lines changed

templates/admin/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "admin/base_site.html" %}
2-
{% load i18n admin_static %}
2+
{% load i18n static %}
33

44
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />{% endblock %}
55

templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load static from staticfiles %}<!DOCTYPE html>
1+
{% load static %}<!DOCTYPE html>
22
{% load group %}
33
<html lang="en">
44
<head>

templates/devel/admin_log.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "admin/base_site.html" %}
2-
{% load i18n admin_static %}
2+
{% load i18n static %}
33

44
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />{% endblock %}
55

templates/devel/clock.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% load flags %}
44
{% load tz %}
55

templates/devel/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% load cache %}
44
{% load package_extras %}
55
{% load todolists %}

templates/devel/packages.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% load attributes %}
44
{% load package_extras %}
55

templates/devel/profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33

44
{% block title %}Arch Linux - Edit Profile{% endblock %}
55

templates/mirrors/mirror_details.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% load mirror_status %}
44
{% load admin_urls %}
55

templates/mirrors/mirrors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% load flags %}
44

55
{% block title %}Arch Linux - Mirror Overview{% endblock %}

templates/mirrors/status.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% load mirror_status %}
44

55
{% block title %}Arch Linux - Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}{% endblock %}

0 commit comments

Comments
 (0)