Skip to content

Commit

Permalink
Add missing {% load l10n %} in templates (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvanekeris authored Oct 17, 2023
1 parent 3a22d59 commit 0a5411c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion django_tables2/templates/django_tables2/bootstrap.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load django_tables2 %}
{% load i18n %}
{% load i18n l10n %}
{% block table-wrapper %}
<div class="table-container">
{% block table %}
Expand Down
2 changes: 1 addition & 1 deletion django_tables2/templates/django_tables2/bootstrap4.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load django_tables2 %}
{% load i18n %}
{% load i18n l10n %}
{% block table-wrapper %}
<div class="table-container">
{% block table %}
Expand Down
2 changes: 1 addition & 1 deletion django_tables2/templates/django_tables2/bootstrap5.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load django_tables2 %}
{% load i18n %}
{% load i18n l10n %}
{% block table-wrapper %}
<div class="table-container">
{% block table %}
Expand Down
2 changes: 1 addition & 1 deletion django_tables2/templates/django_tables2/semantic.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load django_tables2 %}
{% load i18n %}
{% load i18n l10n %}
{% block table-wrapper %}
<div class="ui container table-container">
{% block table %}
Expand Down
2 changes: 1 addition & 1 deletion django_tables2/templates/django_tables2/table.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% load django_tables2 %}
{% load i18n %}
{% load i18n l10n %}
{% block table-wrapper %}
<div class="table-container">
{% block table %}
Expand Down

0 comments on commit 0a5411c

Please sign in to comment.