blob: 32006522bb4bc07bd032fb9f52bd383f497b6dbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% extends "base.html" %}
{% block title %}Imprint{% endblock %}
{% block content %}
<h1>Imprint</h1>
<strong>Impressum gemäß § 6 TDG und § 10 Mediendienstestaatsvertrag</strong>
<table>
<tr>
<th>Institution:</th>
<td>Freie Universität Berlin - vertreten durch den Präsidenten Univ.-Prof. Dr. Dieter Lenzen</td>
</tr>
<tr>
<th>Anschrift:</th>
<td><address>Fachbereich Mathematik und Informatik, Arnimallee 14, 14195 Berlin</address></td>
</tr>
<tr>
<th>Kontakt:</th>
<td>fbv@mi.fu-berlin.de, Tel. +49-30-838-754 51</td>
</tr>
<tr>
<th>Rechtsform:</th>
<td>Die Freie Universität Berlin ist eine Körperschaft des öffentlichen Rechts gem. §§ 1 und 2 Berliner Hochschulgesetz (BerlHG)</td>
</tr>
<tr>
<th>UST-Id:</th>
<td>DE 811304768</td>
</tr>
</table>
{% endblock %}
|