Private
Public Access
1
0

teamcreate done

This commit is contained in:
Sander Roosendaal
2018-10-12 16:55:22 +02:00
parent 3cfc620906
commit a2c1777c74
10 changed files with 434 additions and 206 deletions

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
@@ -8,25 +8,20 @@
{% endblock %}
{% block content %}
<style>
#mypointer {
cursor: pointer;
}
</style>
{% block main %}
<div class="grid_12">
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input class="button green" type="submit" value="Save">
</form>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<div class="grid_1 prefix_2 suffix_9 alpha">
<input class="button green" type="submit" value="Save">
</div>
</form>
</div>
{% endblock %}
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}