relation_list.html.tpl 488 B

123456789101112131415
  1. {{define "relation_list"}}
  2. <h2 class="karmen-relation-header">{{$title := .options.title}}{{if .title}}{{$title = .title}}{{end}}{{$title}}</h2>
  3. {{if gt (len .data) 0}}
  4. <div class="list-group" id="{{$title|toLower}}_list_group">
  5. {{range $el := .data}}
  6. <a href="{{$el.ID | show $.options.model}}" class="list-group-item list-group-item-action">
  7. <span class="{{$.options.icon}}"></span>
  8. {{$el | string}}
  9. {{end}}
  10. </a>
  11. </div>
  12. {{else}}
  13. <p>{{.noElements}}</p>
  14. {{end}}
  15. {{end}}