rollerverbrauch/app/templates/account.html

17 lines
453 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block body %}
<h1>Account management for {{current_user.email}}</h1>
<a href='{{ url_for('security.change_password') }}'>Change password</a>
2016-04-23 11:20:39 +02:00
<table>
{% for vehicle in current_user.vehicles %}
<tr>
<td>{{vehicle.name}}</td>
<td><a href="{{ url_for('edit_vehicle', vid=vehicle.id) }}">edit</a></td>
</tr>
{% endfor %}
</table>
{% endblock %}