Initial commit

This commit is contained in:
2016-01-20 16:56:31 +01:00
commit 60d55652c0
26 changed files with 1668 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% load i18n static %}
{% block title %}{% trans 'Profile change successful' %}{% endblock %}
{% block nav %}
{% include "nav.html" with ls=ls season=season %}
{% endblock %}
{% block body %}
<div id="content-main">
<div class="row">
<div class="col-md-5">
<h3>{% trans 'Profile change successful' %}</h3>
<p>{% trans 'Your profile was changed.' %}</p>
</div>
</div>
</div>
{% endblock %}