28 lines
795 B
HTML
28 lines
795 B
HTML
{% load i18n %}
|
|
{% load static %}
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/core.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'admin/js/vendor/jquery/jquery.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'admin/js/jquery.init.js' %}"></script>
|
|
|
|
{{ form.media }}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/base.css' %}" />
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/widgets.css' %}" />
|
|
|
|
{% load account socialaccount %}
|
|
|
|
{% block content %}
|
|
<center>
|
|
<img src="{% static 'evapp/logo.png' %}" />
|
|
<h1>
|
|
E (V A) - Eintritt, (Veränderung, Austritt)<p>
|
|
</h1>
|
|
|
|
Bitte via Wolke einloggen:
|
|
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
|
|
|
|
</center>
|
|
|
|
{% endblock %}
|