index.tpl 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% include app.template_style ~ '/glossary/header.tpl' %}
  2. {% include app.template_style ~ '/glossary/javascript.tpl' %}
  3. <div class="btn-toolbar actions-bar" >
  4. {% if is_allowed_to_edit %}
  5. <div class="btn-group edit">
  6. <a href="{{root}}&amp;action=add" class=" glossary btn" title="{{'Add'|get_lang}}">
  7. <i class="size-32 icon-new-glossary-term"></i>
  8. </a>
  9. <a href="{{root}}&amp;action=import_csv" class="btn import_csv" title="{{'ImportCSV'|get_lang}}">
  10. <i class="size-32 icon-import-csv"></i>
  11. </a>
  12. <a href="{{root}}&amp;action=export_csv" class="btn export_csv" title="{{'ExportAsCSV'|get_lang}}">
  13. <i class="size-32 icon-export-csv"></i>
  14. </a>
  15. <a href="javascript:void(0)" onclick="ui.remove_by_course('entries', this);return false;" class="btn delete_all" title="{{'DeleteAll'|get_lang}}">
  16. <i class="size-32 icon-delete-all"></i>
  17. </a>
  18. </div>
  19. {% endif %}
  20. <div class="btn-group edit">
  21. {% if view == 'table' %}
  22. <a href="{{root}}&amp;view=list" class="btn" title="{{'ViewList'|get_lang}}">
  23. <i class="size-32 icon-view-text"></i>
  24. </a>
  25. {% else %}
  26. <a href="{{root}}&amp;view=table" class="btn" title="{{'ViewTable'|get_lang}}">
  27. <i class="size-32 icon-view-detailed"></i>
  28. </a>
  29. {% endif %}
  30. </div>
  31. </div>
  32. {% if view == 'table' %}
  33. {% include app.template_style ~ '/glossary/table.tpl' %}
  34. {% else %}
  35. {% include app.template_style ~ '/glossary/list.tpl' %}
  36. {% endif %}