admin_stations.html
<!DOCTYPE html> <html> <head> <title>Admin - Stations</title> </head> <body> <h1>Stations</h1> <a href="{{ url_for('add_station_page') }}">Add Station</a> <table> <tr> <th>ID</th> <th>Location</th> <th>Region</th> <th>Actions</th> </tr> {% for station in stations %} <tr> <td>{{ station[0] }}</td> <td>{{ station[1] }}</td> <td>{{ station[2] }}</td> <td> <a href="{{ url_for('edit_station_page', station_id=station[0]) }}">Edit</a> <form action="{{ url_for('delete_station_page', station_id=station[0]) }}" method="post" style="display:inline;"> <button type="submit">Delete</button> </form> </td> </tr> {% endfor %} </table> </body> </html>
Leave a Comment