mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 08:50:17 +02:00
30 lines
832 B
HTML
30 lines
832 B
HTML
{% load i18n %}
|
|
|
|
<div class="card text-center m-2" style="min-width: 18rem; min-height: 18rem;">
|
|
<div class="card-body">
|
|
<h5 class="card-title">{% block title %}{% endblock title %}</h5>
|
|
|
|
<p class="card-text">
|
|
{% block active %}
|
|
{% include "services/service_status.html" with username=username %}
|
|
{% endblock active %}
|
|
</p>
|
|
|
|
<p class="card-text">
|
|
{% block url %}{% endblock url %}
|
|
</p>
|
|
|
|
<p class="card-text">
|
|
{% block user %}
|
|
{% include "services/service_username.html" with username=username %}
|
|
{% endblock user %}
|
|
</p>
|
|
|
|
{% block extra %}{% endblock extra %}
|
|
</div>
|
|
|
|
<div class="card-footer">
|
|
{% block controls %}{% endblock controls %}
|
|
</div>
|
|
</div>
|