Licitator 1.0
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.

17 lines
838 B

5 years ago
  1. {% for achievement in achievements %}
  2. <div class="boxdoc text-muted pt-3">
  3. {% if showImgs is same as(true) %}
  4. <span class="info-box-icon"><i class="fa fa-trophy"></i></span>
  5. {% endif %}
  6. <div class="media-body pb-3 mb-0 lh-125 border-bottom border-gray">
  7. <div class="d-flex justify-content-between align-items-center w-100">
  8. <strong class="text-gray-dark">{{ achievement.title | trans({}, 'dashboard') }}</strong>
  9. </div>
  10. <span class="d-block">{{ achievement.description }}</span>
  11. {% if achievement.link is defined %}
  12. <a href="{{ achievement.link }}" target="_blank">
  13. {{ "Download report" | trans({}, 'dashboard') }}
  14. </a>
  15. {% endif %}
  16. </div>
  17. </div>
  18. {% endfor %}