machine.html 338 B

12345678910111213141516
  1. <h2>机型管理</h2>
  2. <table border="1">
  3. <tr><th>机型</th><th>生成模板</th></tr>
  4. {% for m in machines %}
  5. <tr>
  6. <td>{{ m.name }}</td>
  7. <td>
  8. <form method="post" action="/admin/template/generate">
  9. <input type="hidden" name="machine_id" value="{{ m.machine_id }}">
  10. <button>生成模板</button>
  11. </form>
  12. </td>
  13. </tr>
  14. {% endfor %}
  15. </table>