31 lines
941 B
HTML
31 lines
941 B
HTML
{% extends "users/base.html" %}
|
|
{% block content %}
|
|
<div class="content-section col-12">
|
|
<h3>Agentur <b>{{ request.user.profile.agency.name }}</b></h3>
|
|
<hr>
|
|
<div class="col-md-6">
|
|
<h6><b>Inhaber</b></h6>
|
|
<p>
|
|
{{ request.user.profile.agency.inhaber }}
|
|
</p>
|
|
<h6><b>Adresse</b></h6>
|
|
<p>
|
|
{{ request.user.profile.agency.street }}
|
|
</p>
|
|
<p>
|
|
{{ request.user.profile.agency.plz }} {{ request.user.profile.agency.city }}
|
|
</p>
|
|
<h6><b>Kontaktdaten</b></h6>
|
|
<p>
|
|
{{ request.user.profile.agency.agency_email }}
|
|
</p>
|
|
<p>
|
|
{{ request.user.profile.agency.phone }}
|
|
</p>
|
|
<h6><b>Agenturbild</b></h6>
|
|
<p>
|
|
<img class="img-profile" width="75%" src="{{ request.user.profile.agency.get_photo_url }}">
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |