Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

templates: replace load staticfiles by load static #10

Merged
merged 1 commit into from
Feb 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/base.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs %}

{% get_current_language as LANGUAGE_CODE %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/batch-create.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs crispy_forms_tags %}

{% block title %}{% trans "Send a new batch" %} – {{ block.super }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/batch-emails.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs crispy_forms_tags %}

{% block title %}{{ batch }} – {% trans "Batch" %} – {{ block.super }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/batch-list.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n l10n staticfiles %}
{% load i18n l10n static %}
{% load django_bootstrap_breadcrumbs crispy_forms_tags %}

{% block title %}{% trans "Batches" %} – {{ block.super }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/batch_confirm_delete.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs crispy_forms_tags %}

{% block title %}{% trans "Delete a batch" %} – {{ block.super }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/common.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/base.html" %}
{% load staticfiles %}
{% load static %}
{% load django_bootstrap_breadcrumbs %}

{% block extra_head %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs %}

{% block title %}{% trans "Dashboard" %} – {{ block.super }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/query/details.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs crispy_forms_tags %}

{% block title %}{% if query %}{{ query.name }}{% else %}{% trans "New query" %}{% endif %} – {{ block.super }}{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion massmailer/templates/massmailer/template/details.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "massmailer/common.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% load django_bootstrap_breadcrumbs crispy_forms_tags %}

{% block title %}{% if template %}{{ template.name }}{% else %}{% trans "New template" %}{% endif %} – {{ block.super }}{% endblock %}
Expand Down