You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

list.tmpl 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {{template "base/head" .}}
  2. <div class="admin authentication">
  3. <div class="ui container">
  4. <div class="ui grid">
  5. {{template "admin/navbar" .}}
  6. <div class="twelve wide column content">
  7. {{template "base/alert" .}}
  8. <h4 class="ui top attached header">
  9. {{.i18n.Tr "admin.auths.auth_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
  10. <div class="ui right">
  11. <a class="ui blue tiny button" href="{{AppSubUrl}}/admin/auths/new">{{.i18n.Tr "admin.auths.new"}}</a>
  12. </div>
  13. </h4>
  14. <div class="ui attached table segment">
  15. <table class="ui very basic striped table">
  16. <thead>
  17. <tr>
  18. <th>ID</th>
  19. <th>{{.i18n.Tr "admin.auths.name"}}</th>
  20. <th>{{.i18n.Tr "admin.auths.type"}}</th>
  21. <th>{{.i18n.Tr "admin.auths.enabled"}}</th>
  22. <th>{{.i18n.Tr "admin.auths.updated"}}</th>
  23. <th>{{.i18n.Tr "admin.users.created"}}</th>
  24. <th>{{.i18n.Tr "admin.users.edit"}}</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. {{range .Sources}}
  29. <tr>
  30. <td>{{.ID}}</td>
  31. <td><a href="{{AppSubUrl}}/admin/auths/{{.ID}}">{{.Name}}</a></td>
  32. <td>{{.TypeString}}</td>
  33. <td><i class="fa fa{{if .IsActived}}-check{{end}}-square-o"></i></td>
  34. <td><span class="poping up" data-content="{{DateFmtLong .Updated}}" data-variation="tiny">{{DateFmtShort .Updated}}</span></td>
  35. <td><span class="poping up" data-content="{{DateFmtLong .Created}}" data-variation="tiny">{{DateFmtShort .Created}}</span></td>
  36. <td><a href="{{AppSubUrl}}/admin/auths/{{.ID}}"><i class="fa fa-pencil-square-o"></i></a></td>
  37. </tr>
  38. {{end}}
  39. </tbody>
  40. </table>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. {{template "base/footer" .}}