profile_item.tpl 484 B

12345678910111213
  1. {% if profiles is not null %}
  2. <h4 class="title-skill">{{ "SkillProfiles"|get_lang }}</h4>
  3. <div class="items_save">
  4. <ul class="holder_simple">
  5. {%for profile in profiles %}
  6. <li class="bit-box load_profile" rel="{{ profile.id }}" >
  7. <button class="close">&times;</button>
  8. <a href="#">{{ profile.name }}</a>
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. </div>
  13. {% endif %}