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

21 lines
901 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 />
<b><u>Educatif :</b></u> {{ passe.educative }}<br />
<b><u>Répétition :</b></u> {{ passe.repetition }}<br />
<b><u>RegExp :</b></u> {{ passe.regexp }}<br /><br />
<a href="{% url 'combination_details' passe.educative.id %}">{{ passe.label }}{% if passe.regexp %}{{ passe.regexp }}{% endif %}</a>&nbsp;&nbsp;&nbsp;{{ passe.repetition }}<br /><br />
{{ number_of_skill }} - {{ difficulty }}
2024-02-25 10:28:58 +01:00
</div>
</div>
</div>
</div>
{% endblock %}