Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions sipa/templates/usersuite/_index_status.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,12 @@ <h2 id="hot-buttons">{{ _("Häufige Aktionen") }}</h2>
{{ _("MAC-Adresse ändern") }}
</a>
{% endif %}

{% if webmailer_url %}
<a href="{{ webmailer_url }}" class="btn btn-outline-secondary">
<span class="bi-envelope-fill"></span>
{{ _("Webmailer") }}
</div>
<div class="btn-group">
<a href="{{ url_for('.contact') }}" class="btn btn-outline-secondary">
<span class="bi-question-circle-fill"></span>
{{ _("Kontaktformular") }}
</a>
{% endif %}
{% if current_user.membership_end_date.capabilities.edit %}
{% if current_user.membership_end_date == None %}
<a href="{{ terminate_membership_url }}" class="btn btn-danger">
Expand Down Expand Up @@ -79,10 +78,12 @@ <h2 id="hot-buttons">{{ _("Häufige Aktionen") }}</h2>


<div class="btn-group">
<a href="{{ url_for('.contact') }}" class="btn btn-outline-secondary">
<span class="bi-question-circle-fill"></span>
{{ _("Kontaktformular") }}
{% if webmailer_url %}
<a href="{{ webmailer_url }}" class="btn btn-outline-secondary">
<span class="bi-envelope-fill"></span>
{{ _("Webmailer") }}
</a>
{% endif %}
<a href="{{ url_for('.subscribe') }}" class="btn btn-outline-secondary">
<span class="bi-megaphone-fill"></span>
{{ _("Status-Page abonnieren") }}
Expand Down
Loading