fixed old Django 2 translation template tags

This commit is contained in:
Peter Pfeufer
2021-10-19 12:05:45 +02:00
parent 5fcb092151
commit cdcf65cb52
55 changed files with 459 additions and 459 deletions

View File

@@ -3,24 +3,24 @@
{% load static %}
{% load i18n %}
{% block page_title %}{{ permission.permission.codename }} - {% trans "Permissions Audit" %}{% endblock page_title %}
{% block page_title %}{{ permission.permission.codename }} - {% translate "Permissions Audit" %}{% endblock page_title %}
{% block content %}
<div>
<h1 class="page-header">{% trans "Permissions Audit" %}: {{ permission.permission.codename }}</h1>
<h1 class="page-header">{% translate "Permissions Audit" %}: {{ permission.permission.codename }}</h1>
<p>
<a href="{% url 'permissions_tool:overview' %}" class="btn btn-default">
<i class="glyphicon glyphicon-chevron-left"></i> {% trans "Back" %}
<i class="glyphicon glyphicon-chevron-left"></i> {% translate "Back" %}
</a>
</p>
<div class="table-responsive">
<table class="table table-striped" id="tab_permissions_audit">
<thead>
<tr>
<th>{% trans "Group" %}</th>
<th>{% translate "Group" %}</th>
<th></th>
<th>{% trans "User / Character" %}</th>
<th>{% trans "Organization" %}</th>
<th>{% translate "User / Character" %}</th>
<th>{% translate "Organization" %}</th>
</tr>
</thead>
<tbody>

View File

@@ -3,18 +3,18 @@
{% load static %}
{% load i18n %}
{% block page_title %}{% trans "Permissions Overview" %}{% endblock page_title %}
{% block page_title %}{% translate "Permissions Overview" %}{% endblock page_title %}
{% block content %}
<div class="col-sm-12">
<h1 class="page-header">{% trans "Permissions Overview" %}</h1>
<h1 class="page-header">{% translate "Permissions Overview" %}</h1>
<p>
{% if request.GET.all != 'yes' %}
{% blocktrans %}Showing only applied permissions{% endblocktrans %}
<a href="{% url 'permissions_tool:overview' %}?all=yes" class="btn btn-primary">{% trans "Show All" %}</a>
<a href="{% url 'permissions_tool:overview' %}?all=yes" class="btn btn-primary">{% translate "Show All" %}</a>
{% else %}
{% blocktrans %}Showing all permissions{% endblocktrans %}
<a href="{% url 'permissions_tool:overview' %}?all=no" class="btn btn-primary">{% trans "Show Applied" %}</a>
<a href="{% url 'permissions_tool:overview' %}?all=no" class="btn btn-primary">{% translate "Show Applied" %}</a>
{% endif %}
</p>
<div class="table-responsive">
@@ -22,25 +22,25 @@
<thead>
<tr>
<th>
{% trans "App" %}
{% translate "App" %}
</th>
<th>
{% trans "Model" %}
{% translate "Model" %}
</th>
<th>
{% trans "Code Name" %}
{% translate "Code Name" %}
</th>
<th>
{% trans "Name" %}
{% translate "Name" %}
</th>
<th class="col-md-1">
{% trans "Users" %}
{% translate "Users" %}
</th>
<th class="col-md-1">
{% trans "Groups" %}
{% translate "Groups" %}
</th>
<th class="col-md-1">
{% trans "States" %}
{% translate "States" %}
</th>
</tr>
</thead>