We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d98329c commit ccaf10dCopy full SHA for ccaf10d
readthedocsext/theme/templates/profiles/partials/token_list.html
@@ -1,10 +1,6 @@
1
{% extends "includes/crud/table_list.html" %}
2
3
-{% load i18n %}
4
-
5
-{% load core_tags %}
6
-{% load privacy_tags %}
7
-{% load projects_tags %}
+{% load blocktrans trans from i18n %}
8
9
{% block top_left_menu_items %}
10
{% endblock top_left_menu_items %}
@@ -16,7 +12,9 @@
16
12
{% endcomment %}
17
13
<form method="post" action="{% url "profiles_tokens_create" %}">
18
14
{% csrf_token %}
19
- <button class="ui green {% if objects %}disabled{% endif %}button">{% trans "Generate API token" %}</button>
15
+ <button class="ui green {% if objects %}disabled{% endif %} button">
+ {% trans "Generate API token" %}
+ </button>
20
</form>
21
{% endblock create_button %}
22
0 commit comments