You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
838 B
18 lines
838 B
{% for achievement in achievements %}
|
|
<div class="boxdoc text-muted pt-3">
|
|
{% if showImgs is same as(true) %}
|
|
<span class="info-box-icon"><i class="fa fa-trophy"></i></span>
|
|
{% endif %}
|
|
<div class="media-body pb-3 mb-0 lh-125 border-bottom border-gray">
|
|
<div class="d-flex justify-content-between align-items-center w-100">
|
|
<strong class="text-gray-dark">{{ achievement.title | trans({}, 'dashboard') }}</strong>
|
|
</div>
|
|
<span class="d-block">{{ achievement.description }}</span>
|
|
{% if achievement.link is defined %}
|
|
<a href="{{ achievement.link }}" target="_blank">
|
|
{{ "Download report" | trans({}, 'dashboard') }}
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|