2024-10-15 17:07:18 -04:00
|
|
|
{{define "content_dropdown_item"}}
|
2024-10-12 14:01:52 -04:00
|
|
|
<li><a class="dropdown-item {{if eq .IsActive true}}active{{end}} {{if eq .IsDisabled true}}disabled{{end}}" href="{{.Link}}">{{.Text}}</a></li>
|
|
|
|
{{end}}
|
|
|
|
|
2024-10-15 17:07:18 -04:00
|
|
|
{{define "content_dropdown"}}
|
2024-10-12 14:01:52 -04:00
|
|
|
<div class="dropdown">
|
|
|
|
<button class="btn btn-{{.TypeClass}} dropdown-toggle {{if eq .IsDisabled true}}disabled{{end}}" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
|
|
{{.Label}}
|
|
|
|
</button>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
{{ range .Items}}
|
2024-10-15 17:07:18 -04:00
|
|
|
{{template "content_dropdown_item" .}}
|
2024-10-12 14:01:52 -04:00
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{end}}
|