diff --git a/input/models.py b/input/models.py
index 4c2e1ac..6fd693c 100644
--- a/input/models.py
+++ b/input/models.py
@@ -128,12 +128,13 @@ class Grant(Extern):
TYPE_CHOICES = {'BIB': format_html('Bibliotheksstipendium'),
'ELIT': format_html('eLiteraturstipendium'),
- 'SOFT': format_html('Softwarestipendium'),
- 'VIS': format_html('Visitenkarten'),
- 'LIST': format_html('Mailingliste'),
'MAIL': format_html('E-Mail-Adresse'),
'IFG': format_html('Kostenübernahme IFG-Anfrage'),
- 'LIT': format_html('Literaturstipendium'),}
+ 'LIT': format_html('Literaturstipendium'),
+ 'LIST': format_html('Mailingliste'),
+ 'SOFT': format_html('Softwarestipendium'),
+ 'VIS': format_html('Visitenkarten'),
+ }
# same model is used for Library, ELitStip and Software!
diff --git a/input/templates/input/extern.html b/input/templates/input/extern.html
index 78c79f8..ea19565 100644
--- a/input/templates/input/extern.html
+++ b/input/templates/input/extern.html
@@ -18,6 +18,9 @@
ul > li {
list-style-type: none;
}
+ ul {
+ padding-left: 10;
+ }
@@ -40,5 +43,6 @@
{% endif %}
+
Für interessierte Hacker gibts auch den Sourcecode zum Formular und was damit passiert. {% endblock %}