Pārlūkot izejas kodu

Création User merchant

feature/ticket
Fab pirms 3 gadiem
vecāks
revīzija
801c155ea9
2 mainītis faili ar 44 papildinājumiem un 3 dzēšanām
  1. +29
    -0
      Resources/views/adminlte/macro/alert.html.twig
  2. +15
    -3
      Resources/views/adminlte/macro/callout.html.twig

+ 29
- 0
Resources/views/adminlte/macro/alert.html.twig Parādīt failu

@@ -0,0 +1,29 @@

{% macro alert_warning(message, title, icon) %}
{{ _self.alert('warning', message, title, icon) }}
{% endmacro %}

{% macro alert_info(message, title, icon) %}
{{ _self.alert('info', message, title, icon) }}
{% endmacro %}

{% macro alert_danger(message, title, icon) %}
{{ _self.alert('danger', message, title, icon) }}
{% endmacro %}

{% macro alert_success(message, title, icon) %}
{{ _self.alert('success', message, title, icon) }}
{% endmacro %}

{% macro alert(type, message, title, icon) %}
<div class="alert alert-{{ type }}">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
{% if title %}
<h5>
{% if icon %}<i class="icon fas fa-{{ icon }}"></i>{% endif %}
{{ title }}
</h5>
{% endif %}
{{ message }}
</div>
{% endmacro %}

+ 15
- 3
Resources/views/adminlte/macro/callout.html.twig Parādīt failu

@@ -1,11 +1,23 @@

{% macro callout_warning(message, title = '') %}
{% macro callout_warning(message, title) %}
{{ _self.callout('warning', message, title) }}
{% endmacro %}

{% macro callout(type, message, title = '') %}
{% macro callout_info(message, title) %}
{{ _self.callout('info', message, title) }}
{% endmacro %}

{% macro callout_danger(message, title) %}
{{ _self.callout('danger', message, title) }}
{% endmacro %}

{% macro callout_success(message, title) %}
{{ _self.callout('success', message, title) }}
{% endmacro %}

{% macro callout(type, message, title) %}
<div class="callout callout-{{ type }}">
<h5>{{ title }}</h5>
{% if title %}<h5>{{ title }}</h5>{% endif %}
<p>{{ message }}</p>
</div>
{% endmacro %}

Notiek ielāde…
Atcelt
Saglabāt