mirror of
https://github.com/ae-utbm/sith.git
synced 2026-09-18 10:14:24 +00:00
apply review comments
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-09-14 11:48+0200\n"
|
"POT-Creation-Date: 2026-09-18 11:01+0200\n"
|
||||||
"PO-Revision-Date: 2016-07-18\n"
|
"PO-Revision-Date: 2016-07-18\n"
|
||||||
"Last-Translator: Maréchal <thomas.girod@utbm.fr\n"
|
"Last-Translator: Maréchal <thomas.girod@utbm.fr\n"
|
||||||
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
||||||
@@ -5241,6 +5241,22 @@ msgstr "Catégorie"
|
|||||||
msgid "Credits"
|
msgid "Credits"
|
||||||
msgstr "Crédits"
|
msgstr "Crédits"
|
||||||
|
|
||||||
|
#: pedagogy/templates/pedagogy/ue_detail.jinja
|
||||||
|
msgid "Lectures"
|
||||||
|
msgstr "Cours magistraux"
|
||||||
|
|
||||||
|
#: pedagogy/templates/pedagogy/ue_detail.jinja
|
||||||
|
msgid "Tutorials"
|
||||||
|
msgstr "Travaux dirigés"
|
||||||
|
|
||||||
|
#: pedagogy/templates/pedagogy/ue_detail.jinja
|
||||||
|
msgid "Practicals"
|
||||||
|
msgstr "Travaux pratiques"
|
||||||
|
|
||||||
|
#: pedagogy/templates/pedagogy/ue_detail.jinja
|
||||||
|
msgid "Work without supervision"
|
||||||
|
msgstr "Travail hors encadrement"
|
||||||
|
|
||||||
#: pedagogy/templates/pedagogy/ue_detail.jinja
|
#: pedagogy/templates/pedagogy/ue_detail.jinja
|
||||||
msgid "Availability"
|
msgid "Availability"
|
||||||
msgstr "Disponibilité"
|
msgstr "Disponibilité"
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% if user.has_perm("pedagogy.delete_uecomment") %}
|
{% if comment.author_id == user.id or user.has_perm("pedagogy.delete_uecomment") %}
|
||||||
<div class="alert-aside">
|
<div class="alert-aside">
|
||||||
<a
|
<a
|
||||||
href="{{ url("pedagogy:comment_delete", comment_id=comment.id) }}"
|
href="{{ url("pedagogy:comment_delete", comment_id=comment.id) }}"
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
</time>
|
</time>
|
||||||
</div>
|
</div>
|
||||||
<div class="comment-options">
|
<div class="comment-options">
|
||||||
{% if user.can_edit(comment) %}
|
{% if comment.author_id == user.id or user.has_perm("pedagogy.change_uecomment") %}
|
||||||
<a
|
<a
|
||||||
class="clickable"
|
class="clickable"
|
||||||
hx-get="{{ url('pedagogy:comment_update', comment_id=comment.id) }}"
|
hx-get="{{ url('pedagogy:comment_update', comment_id=comment.id) }}"
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
<i class="fa fa-exclamation delete-action"></i>
|
<i class="fa fa-exclamation delete-action"></i>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if user.has_perm("pedagogy.delete_uecomment") %}
|
{% if comment.author_id == user.id or user.has_perm("pedagogy.delete_uecomment") %}
|
||||||
<a
|
<a
|
||||||
href="{{ url("pedagogy:comment_delete", comment_id=comment.id) }}"
|
href="{{ url("pedagogy:comment_delete", comment_id=comment.id) }}"
|
||||||
tooltip="{% trans %}Delete{% endtrans %}"
|
tooltip="{% trans %}Delete{% endtrans %}"
|
||||||
|
|||||||
@@ -27,25 +27,21 @@
|
|||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="info-container-item">
|
<div class="info-container-item">
|
||||||
<div>Cours magistraux</div>
|
<div>{% trans %}Lectures{% endtrans %}</div>
|
||||||
<div>{{ object.hours_CM }}h</div>
|
<div>{{ object.hours_CM }}h</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-container-item">
|
<div class="info-container-item">
|
||||||
<div>Travaux dirigés</div>
|
<div>{% trans %}Tutorials{% endtrans %}</div>
|
||||||
<div>{{ object.hours_TD }}h</div>
|
<div>{{ object.hours_TD }}h</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-container-item">
|
<div class="info-container-item">
|
||||||
<div>Travaux pratiques</div>
|
<div>{% trans %}Tutorials{% endtrans %}</div>
|
||||||
<div>{{ object.hours_TP }}h</div>
|
<div>{{ object.hours_TP }}h</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-container-item">
|
<div class="info-container-item">
|
||||||
<div>Travail hors encadrement</div>
|
<div>{% trans %}Work without supervision{% endtrans %}</div>
|
||||||
<div>{{ object.hours_THE }}h</div>
|
<div>{{ object.hours_THE }}h</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info-container-item">
|
|
||||||
<div>Cours magistraux</div>
|
|
||||||
<div>{{ object.hours_TE }}h</div>
|
|
||||||
</div>
|
|
||||||
<hr>
|
<hr>
|
||||||
<div class="info-container-item">
|
<div class="info-container-item">
|
||||||
<div>{% trans %}Availability{% endtrans %}</div>
|
<div>{% trans %}Availability{% endtrans %}</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user