terms.html.twig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {% autoescape false %}
  2. {{ form }}
  3. <table class="data_table">
  4. <tr>
  5. <th>
  6. {{ 'Term' | get_plugin_lang('DictionaryPlugin') }}
  7. </th>
  8. <th>
  9. {{ 'Definition' | get_plugin_lang('DictionaryPlugin') }}
  10. </th>
  11. <th>
  12. {{ 'Actions' | get_lang }}
  13. </th>
  14. </tr>
  15. {% for term in terms %}
  16. <tr>
  17. <td>
  18. {{ term.term }}
  19. </td>
  20. <td>
  21. {{ term.definition }}
  22. </td>
  23. <td>
  24. <a href="{{ _p.web_plugin }}dictionary/terms.php?action=edit&{{ {'id': term.id}|url_encode() }}" class="btn btn-success">
  25. <span class="fa fa-edit fa-fw" aria-hidden="true"></span> {{ 'Edit'|get_lang }}
  26. </a>
  27. <a href="{{ _p.web_plugin }}dictionary/terms.php?action=delete&{{ {'id': term.id}|url_encode() }}" class="btn btn-danger">
  28. <span class="fa fa-times fa-fw" aria-hidden="true"></span> {{ 'Delete'|get_lang }}
  29. </a>
  30. </td>
  31. </tr>
  32. {% endfor %}
  33. </table>
  34. {% endautoescape %}