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

21 lines
901 B
HTML

{% 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">
<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 }}
</div>
</div>
</div>
</div>
{% endblock %}