- <h2>机型管理</h2>
- <table border="1">
- <tr><th>机型</th><th>生成模板</th></tr>
- {% for m in machines %}
- <tr>
- <td>{{ m.name }}</td>
- <td>
- <form method="post" action="/admin/template/generate">
- <input type="hidden" name="machine_id" value="{{ m.machine_id }}">
- <button>生成模板</button>
- </form>
- </td>
- </tr>
- {% endfor %}
- </table>
|