show_create_row.twig 565 B

12345678910111213141516171819
  1. <fieldset>
  2. <legend>{{ title }}</legend>
  3. <table class="show_create">
  4. <thead>
  5. <tr>
  6. <th>{{ raw_title }}</th>
  7. <th>{{ 'Create %s'|trans|format(raw_title) }}</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. {% for object in db_objects %}
  12. <tr>
  13. <td><strong>{{ Core_mimeDefaultFunction(object) }}</strong></td>
  14. <td>{{ Core_mimeDefaultFunction(dbi.getTable(db, object).showCreate()) }}</td>
  15. </tr>
  16. {% endfor %}
  17. </tbody>
  18. </table>
  19. </fieldset>