tag.html 1.1 KB

12345678910111213141516171819202122232425
  1. <span class="tag">
  2. {% if include.flag %}
  3. {% include "ui/flag.html" flag=include.flag size="xxs" class="tag-flag" %}
  4. {% elsif include.icon %}
  5. {% include "ui/icon.html" icon=include.icon size="xxs" class="tag-icon" %}
  6. {% elsif include.person %}
  7. {% include "ui/avatar.html" person=include.person size="xxs" class="tag-avatar" %}
  8. {% elsif include.person-id %}
  9. {% include "ui/avatar.html" person-id=include.person-id size="xxs" class="tag-avatar" %}
  10. {% elsif include.payment %}
  11. {% include "ui/payment.html" provider=include.payment size="xxs" class="tag-payment" %}
  12. {% elsif include.status %}
  13. {% include "ui/badge.html" color=include.status class="tag-status badge-dot" text="" %}
  14. {% elsif include.legend %}
  15. <span class="legend bg-{{ include.legend }}"></span>
  16. {% elsif include.checkbox %}
  17. <input type="checkbox" class="form-check-input tag-check"{% if include.checked %} checked{% endif %}/>
  18. {% endif %}
  19. {{ include.text }}
  20. {% if include.badge %}
  21. {% include "ui/badge.html" color=include.status class="tag-badge" text=include.badge size="sm" %}
  22. {% endif %}
  23. <a href="#" class="btn-close"></a>
  24. </span>