This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp/templates/repapp/guest_profile.html
2023-04-28 11:54:13 +02:00

29 lines
771 B
HTML

{% extends "repapp/base.html" %}
{% block title %}
- Ihre Daten
{% endblock title %}
{% block page_title %}
Ihre Daten
{% endblock page_title %}
{% block content %}
<table class="table">
<tbody>
<tr>
<th scope="row">eMail Adresse</th>
<td>{{ guest.mail }}</td>
</tr>
<tr>
<th scope="row">Name</th>
<td>{{ guest.name }}</td>
</tr>
<tr>
<th scope="row">Wohnort</th>
<td>{{ guest.residence }}</td>
</tr>
<tr>
<th scope="row">Telefonnummer</th>
<td>{{ guest.phone }}</td>
</tr>
</tbody>
</table>
{% endblock content %}