mirror of
https://github.com/tabler/tabler.git
synced 2026-07-28 14:04:38 +04:00
24 lines
929 B
HTML
24 lines
929 B
HTML
{% assign actions = include.actions %}
|
|
|
|
<!-- Page title actions -->
|
|
<div class="col-auto ml-auto d-print-none">
|
|
{% if actions == 'users' %}
|
|
<div class="d-flex">
|
|
<input type="search" class="form-control d-inline-block w-9 mr-3" placeholder="Search user…"/>
|
|
{% include_cached ui/button.html text="New user" color="primary" icon="plus" %}
|
|
</div>
|
|
{% elsif actions == 'calendar' %}
|
|
<div class="d-flex">
|
|
{% include_cached ui/button.html text="Add event" color="primary" icon="plus" %}
|
|
</div>
|
|
{% elsif actions == 'breadcrumb' %}
|
|
<div class="d-flex">
|
|
{% include_cached ui/breadcrumb.html class="breadcrumb-alternate" %}
|
|
</div>
|
|
{% elsif actions == 'buttons' %}
|
|
<span class="d-none d-sm-inline">
|
|
{% include_cached ui/button.html text="New view" color="secondary" icon="home" %}
|
|
</span>
|
|
{% include_cached ui/button.html text="Create new report" color="primary" class="ml-3" %}
|
|
{% endif %}
|
|
</div> |