Skip to content

Commit 7e8cdc8

Browse files
fix: template and translations
1 parent 4bcd3f5 commit 7e8cdc8

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

uniticket/locale/en/LC_MESSAGES/django.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: \n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2025-12-04 14:56+0100\n"
11-
"PO-Revision-Date: 2025-12-04 14:57+0100\n"
11+
"PO-Revision-Date: 2025-12-04 16:01+0100\n"
1212
"Last-Translator: \n"
1313
"Language-Team: \n"
1414
"Language: en\n"
@@ -1434,7 +1434,7 @@ msgstr "Accessible to organization employees"
14341434
#: uni_ticket/models.py:201
14351435
#: uni_ticket_bootstrap_italia_template/templates/manager/category_detail.html:314
14361436
msgid "Accessibile solo con autenticazione SPID o CIE"
1437-
msgstr ""
1437+
msgstr "Accessible only with SPID or CIE authentication"
14381438

14391439
#: uni_ticket/models.py:210 uni_ticket/models.py:519
14401440
msgid "Richiesta di tipo Notifica"

uniticket/uni_ticket_bootstrap_italia_template/templates/manager/categories_list.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
<div class="card card-bg no-after">
3131
<div class="card-body">
3232
{% include "manager/category_status.html" %}
33+
{% if category.allow_spid_cie %}
34+
<span class="badge c-line primary-bg-b1 mb-2">SPID/CIE</span>
35+
{% endif %}
3336
<br>
3437
<a class="read-more" href="{% url 'uni_ticket:manager_category_detail' structure_slug=structure.slug category_slug=category.slug %}">
3538
<h5 class="card-title">{{ category.name }}</h5>

uniticket/uni_ticket_bootstrap_italia_template/templates/user/new_ticket_preload.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<select id="category_slug"{% if not chosen_structure %} disabled{% endif %} name="category_slug" title="{% trans 'Di cosa si tratta?' %}">
6666
<option value="" selected></option>
6767
{% for categoria in categorie %}
68-
<option value="{{ categoria.slug }}">{{ categoria }}</option>
68+
<option value="{{ categoria.slug }}">{{ categoria }} {% if categoria.allow_spid_cie %}({% trans "Accessibile solo con autenticazione SPID o CIE" %}){% endif %}</option>
6969
{% endfor %}
7070
</select>
7171
</div>

0 commit comments

Comments
 (0)