Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 lines
884B

  1. {% macro alert_warning(message, title, icon) %}
  2. {{ _self.alert('warning', message, title, icon) }}
  3. {% endmacro %}
  4. {% macro alert_info(message, title, icon) %}
  5. {{ _self.alert('info', message, title, icon) }}
  6. {% endmacro %}
  7. {% macro alert_danger(message, title, icon) %}
  8. {{ _self.alert('danger', message, title, icon) }}
  9. {% endmacro %}
  10. {% macro alert_success(message, title, icon) %}
  11. {{ _self.alert('success', message, title, icon) }}
  12. {% endmacro %}
  13. {% macro alert(type, message, title, icon) %}
  14. <div class="alert alert-{{ type }}">
  15. <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
  16. {% if title %}
  17. <h5>
  18. {% if icon %}<i class="icon fas fa-{{ icon }}"></i>{% endif %}
  19. {{ title }}
  20. </h5>
  21. {% endif %}
  22. {{ message }}
  23. </div>
  24. {% endmacro %}