add css template exercise - refs #2681
parent
42f6987b74
commit
3f313fed90
@ -1,46 +1,49 @@ |
||||
{% block content %} |
||||
{% autoescape false %} |
||||
<ul class="list-group list-group-flush"> |
||||
{% for item in data %} |
||||
<li class="list-group-item"> |
||||
<div class="row"> |
||||
<div class="col-md-5"> |
||||
<h5> |
||||
<img src="{{ 'quiz.png'|icon(22) }}"> |
||||
<a href="{{ item.url }}"> |
||||
{{ item.title }} |
||||
</a> |
||||
</h5> |
||||
{% if item.description %} |
||||
<div class="description"> |
||||
{{ item.description }} |
||||
</div> |
||||
{% endif %} |
||||
</div> |
||||
<div class="col-md-5"> |
||||
<p>{{ 'Percentage of completion'|trans }}</p> |
||||
{% if item.score %} |
||||
<div class="progress"> |
||||
<div class="progress-bar" role="progressbar" style="width: {{ item.score.percentage }}%" aria-valuenow="{{ item.score.percentage }}" aria-valuemin="0" aria-valuemax="100"> |
||||
{{ item.score.percentage }}% |
||||
<div class="list-exercise"> |
||||
<ul class="list-group list-group-flush"> |
||||
{% for item in data %} |
||||
<li class="list-group-item"> |
||||
<div class="row"> |
||||
<div class="col-md-5"> |
||||
<h5> |
||||
<img src="{{ 'quiz.png'|icon(22) }}"> |
||||
<a href="{{ item.url }}"> |
||||
{{ item.title }} |
||||
</a> |
||||
</h5> |
||||
{% if item.description %} |
||||
<div class="description"> |
||||
{{ item.description }} |
||||
</div> |
||||
</div> |
||||
{% endif %} |
||||
</div> |
||||
<div class="col-md-2"> |
||||
{% if is_teacher %} |
||||
{{ item.actions }} |
||||
{% else %} |
||||
<p>{{ 'Latest Attempt'|trans }}</p> |
||||
<ul class="score-list"> |
||||
<li>{{ 'Score obtained'|trans }} : {{ item.score.score_obtained }}</li> |
||||
<li>{{ 'Total score'|trans }} : {{ item.score.total_score }}</li> |
||||
</ul> |
||||
{% endif %} |
||||
{% endif %} |
||||
</div> |
||||
<div class="col-md-5"> |
||||
<strong>{{ 'Quantity Questions'|trans }}:</strong> {{ item.number_questions }} |
||||
<p>{{ 'Percentage of completion'|trans }}</p> |
||||
{% if item.score %} |
||||
<div class="progress"> |
||||
<div class="progress-bar" role="progressbar" style="width: {{ item.score.percentage }}%" aria-valuenow="{{ item.score.percentage }}" aria-valuemin="0" aria-valuemax="100"> |
||||
{{ item.score.percentage }}% |
||||
</div> |
||||
</div> |
||||
{% endif %} |
||||
</div> |
||||
<div class="col-md-2"> |
||||
{% if is_teacher %} |
||||
{{ item.actions }} |
||||
{% else %} |
||||
<p>{{ 'Latest Attempt'|trans }}</p> |
||||
<ul class="score-list"> |
||||
<li>{{ 'Score obtained'|trans }} : {{ item.score.score_obtained }}</li> |
||||
<li>{{ 'Total score'|trans }} : {{ item.score.total_score }}</li> |
||||
</ul> |
||||
{% endif %} |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</li> |
||||
{% endfor %} |
||||
</ul> |
||||
</li> |
||||
{% endfor %} |
||||
</ul> |
||||
</div> |
||||
{% endautoescape %} |
||||
{% endblock %} |
Loading…
Reference in new issue