Jarvis/jarvis/objective/templates/passes/details.html

22 lines
986 B
HTML
Raw Normal View History

2024-02-25 10:28:58 +01:00
{% extends "base.html" %}
{% load has_group %}
{% block page_title %}{{ combination.short_label }}{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-12 col-sm-12 col-md-8 col-lg-8 col-xl-6">
<div class="card">
<div class="card-body">
2024-02-25 20:02:20 +01:00
<b><u>Label :</b></u> {{ passe.label }}<br />
2024-02-29 16:20:29 +01:00
<b><u>Content :</b></u> {% for educative in passe.educative.all %}{{ educative }}{% if not forloop.last %} & {% endif %}{% endfor %}<br />
2024-02-25 20:02:20 +01:00
<b><u>Répétition :</b></u> {{ passe.repetition }}<br />
2024-02-29 16:20:29 +01:00
{% if passe.regexp %}<b><u>RegExp :</b></u> {{ passe.regexp }}<br />{% endif %}
<br />
<a href="#">{{ passe.label }}{% if passe.regexp %}{{ passe.regexp }}{% endif %}</a>&nbsp;&nbsp;&nbsp;{{ passe.repetition }}<br /><br />
2024-02-25 20:02:20 +01:00
{{ number_of_skill }} - {{ difficulty }}
2024-02-25 10:28:58 +01:00
</div>
</div>
</div>
</div>
{% endblock %}