terms.html.twig 1016 B

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