diff --git a/templates/about.html b/templates/about.html
new file mode 100644
index 0000000..aefb7d6
--- /dev/null
+++ b/templates/about.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% load i18n static %}
+{% load humanize %}
+{% block head %}
+
+{% endblock %}
+
+{% block nav %}
+{% include "nav.html" with ls=ls season=season %}
+{% endblock %}
+
+{% block body %}
+
+
+
+
Über TipPy
+
TipPy ist eine responsive Web-Applikation für Tippspiele mit
+ einem "Mobile-First-Ansatz" . Unterstützt werden alle auf
+ OpenLigaDB bereitgestellten
+ Sportarten und Ligen.
+
+ TipPy wurde in Python umgesetzt
+ und benutzt die Frameworks Django
+ als Web Application Framework, und Twitters
+ Bootstrap für CSS.
+
+
+
+{% endblock %}
diff --git a/templates/nav.html b/templates/nav.html
index 7bbe514..2fff481 100644
--- a/templates/nav.html
+++ b/templates/nav.html
@@ -9,7 +9,7 @@
- TipPy 1.0
+ TipPy 1.0
diff --git a/tipp/views.py b/tipp/views.py
index 50f8118..cd08780 100644
--- a/tipp/views.py
+++ b/tipp/views.py
@@ -50,6 +50,10 @@ sys.setdefaultencoding('utf8')
timezoneLocal = pytz.timezone('Europe/Berlin')
+def about(request):
+ return render(request, 'about.html')
+
+
@login_required
def home(request):
ls = get_current_ls()
@@ -430,6 +434,11 @@ def matchday(request, ls, season, matchday, template_name='md.html'):
mate['tipps'].append(u'\u2714')
except Exception as e:
mate['tipps'].append(u'\u2717')
+
+ """ sort items in mandant_dict by score """
+ mandant_dict[mandant] = sorted(mandant_dict[mandant],
+ key=lambda k: k['sum_score'], reverse=True)
+
matches.append(item)
diff --git a/tippy/__init__.py b/tippy/__init__.py
index e69de29..cd7ca49 100644
--- a/tippy/__init__.py
+++ b/tippy/__init__.py
@@ -0,0 +1 @@
+__version__ = '1.0.1'
diff --git a/tippy/urls.py b/tippy/urls.py
index 3db9250..08fe992 100644
--- a/tippy/urls.py
+++ b/tippy/urls.py
@@ -26,6 +26,7 @@ urlpatterns = patterns('',
url(r'^accounts/', include('django.contrib.auth.urls')),
url(r'^blog/newpost$', 'tipp.views.newBlogpost'),
url(r'^blog/(?P\d)$', 'tipp.views.blogindex'),
+ url(r'^about$', 'tipp.views.about'),
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),