profile_item.html.twig 1.1 KB

12345678910111213141516171819202122
  1. {% if profiles %}
  2. <h4>{{ "SkillProfiles"|get_lang }}</h4>
  3. <table class="table table-responsive table-condensed">
  4. <tbody>
  5. {%for profile in profiles %}
  6. <tr>
  7. <td>{{ profile.name }}</td>
  8. <td class="text-right">
  9. <div class="btn-group btn-group-sm">
  10. <button class="btn btn-default btn-sm skill-wheel-load-profile" aria-label="{{ 'Search'|get_lang }}" title="{{ 'Search'|get_lang }}" data-id="{{ profile.id }}">
  11. <span class="fa fa-search" aria-hidden="true"></span>
  12. </button>
  13. <button class="btn btn-default btn-sm skill-wheel-delete-profile" aria-label="{{ 'Delete'|get_lang }}" title="{{ 'Delete'|get_lang }}" data-id="{{ profile.id }}">
  14. <span class="fa fa-trash" aria-hidden="true"></span>
  15. </button>
  16. </div>
  17. </td>
  18. </tr>
  19. {% endfor %}
  20. </tbody>
  21. </table>
  22. {% endif %}