oef/templates/layout/show_header.html.tpl
2019-12-19 07:38:10 +01:00

17 lines
480 B
Smarty

{{define "show_header"}}
<div class="karmen-info-header">
<div class="row">
<div class="col-md-8">
<h1>{{.title}}</h1>
</div>
<div class="col-md-4">
<div class="btn-group float-right" role="group">
{{template "update_button" dict "updateButtonTitle" .options.updateButtonTitle "modelPath" .updatePath}}
{{if .deletePath}}
{{template "delete_button" dict "modelPath" .deletePath}}
{{end}}
</div>
</div>
</div>
</div>
{{end}}