admin_collectors.html
<!DOCTYPE html> <html> <head> <title>Admin - Collectors</title> </head> <body> <h1>Collectors</h1> <a href="{{ url_for('add_collector_page') }}">Add Collector</a> <table> <tr> <th>ID</th> <th>Name</th> <th>Truck Plate</th> <th>Actions</th> </tr> {% for collector in collectors %} <tr> <td>{{ collector[0] }}</td> <td>{{ collector[1] }}</td> <td>{{ collector[2] }}</td> <td> <a href="{{ url_for('edit_collector_page', collector_id=collector[0]) }}">Edit</a> <form action="{{ url_for('delete_collector_page', collector_id=collector[0]) }}" method="post" style="display:inline;"> <button type="submit">Delete</button> </form> </td> </tr> {% endfor %} </table> </body> </html>
Leave a Comment