You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
396 B
HTML
20 lines
396 B
HTML
{% extends "members/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
{% trans "Registration" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<link rel="stylesheet" href="{% static "ludwigsburgalpin/termine.css" static %}">
|
|
|
|
<h1>{% trans "Register" %}</h1>
|
|
|
|
<p>{% trans "Here you can register for group" %} {{ group.name }}.</p>
|
|
|
|
{% include "members/member_form.html" %}
|
|
|
|
{% endblock %}
|