internal_relational_row.twig 970 B

123456789101112131415161718192021222324252627282930
  1. <tr>
  2. <td class="vmiddle">
  3. <strong>{{ myfield }}</strong>
  4. <input type="hidden" name="fields_name[{{ myfield_md5 }}]"
  5. value="{{ myfield }}"/>
  6. </td>
  7. <td>
  8. {% include 'table/relation/relational_dropdown.twig' with {
  9. 'name': 'destination_db[' ~ myfield_md5 ~ ']',
  10. 'title': 'Database'|trans,
  11. 'values': databases,
  12. 'foreign': foreign_db
  13. } only %}
  14. {% include 'table/relation/relational_dropdown.twig' with {
  15. 'name': 'destination_table[' ~ myfield_md5 ~ ']',
  16. 'title': 'Table'|trans,
  17. 'values': tables,
  18. 'foreign': foreign_table
  19. } only %}
  20. {% include 'table/relation/relational_dropdown.twig' with {
  21. 'name': 'destination_column[' ~ myfield_md5 ~ ']',
  22. 'title': 'Column'|trans,
  23. 'values': columns,
  24. 'foreign': foreign_column
  25. } only %}
  26. </td>
  27. </tr>