Private
Public Access
1
0

line 422 and started with plan_menu

This commit is contained in:
Sander Roosendaal
2018-10-11 22:03:04 +02:00
parent 9d69fa15ea
commit f72335c49d
6 changed files with 175 additions and 224 deletions

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
@@ -8,32 +8,11 @@
{% endblock %}
{% block content %}
<style>
#mypointer {
cursor: pointer;
}
</style>
<div class="grid_12 alpha">
{% if user.is_authenticated and user|is_manager %}
<div class="grid_2 prefix_8 dropdown">
<button class="grid_2 alpha button green small dropbtn">
{{ rower.user.first_name }} {{ rower.user.last_name }}
</button>
<div class="dropdown-content">
{% for member in user|team_members %}
<a class="button green small" href="/rowers/createplan/{{ member.id }}">{{ member.first_name }} {{ member.last_name }}</a>
{% endfor %}
</div>
</div>
{% endif %}
</div>
<div class="grid_12 alpha">
<div id="targets_table" class="grid_8 alpha">
<h1>Training Targets</h1>
{% block main %}
<h1>Manage Training Targets and Plan for {{ rower.user.first_name }} {{ rower.user.last_name }}</h1>
<ul class="main-content">
<li class="grid_2">
<h2>Training Targets</h2>
{% if targets %}
<table width="100%" class="listtable shortpadded">
@@ -59,31 +38,22 @@
{% else %}
No training targets found
{% endif %}
</div>
<div class="grid_4 omega">
<div class="grid_4" id="planform">
<h1>Add a target</h1>
</li>
<li class="grid_2">
<h2>Add a target</h2>
<form id="newplanform"
enctype="multipart/form-data" action="" method="post">
<table width=100%>
{{ targetform.as_table }}
</table>
{% csrf_token %}
<div id="formbutton" class="grid_1 prefix_2 suffix_1 omega">
<form id="newplanform"
enctype="multipart/form-data" action="" method="post">
<table width=100%>
{{ targetform.as_table }}
</table>
{% csrf_token %}
<input class="button green" type="submit" value="Save">
</div>
</form>
</form>
</div>
</div>
</div>
<div class="grid_12 alpha">
<div id="courses_table" class="grid_8 alpha">
<h1>Plans</h1>
</li>
<li class="grid_2">
<h2>Plans</h2>
{% if plans %}
<table width="100%" class="listtable shortpadded">
@@ -111,28 +81,24 @@
<p> No plans found </p>
{% endif %}
</div>
<div class="grid_4 omega">
<div class="grid_4" id="planform">
<h1>Add a plan</h1>
<form id="newplanform"
enctype="multipart/form-data" action="" method="post">
<table width=100%>
{{ form.as_table }}
</table>
{% csrf_token %}
<div id="formbutton" class="grid_1 prefix_2 suffix_1 omega">
</li>
<li class="grid_2">
<h2>Add a plan</h2>
<form id="newplanform"
enctype="multipart/form-data" action="" method="post">
<table width=100%>
{{ form.as_table }}
</table>
{% csrf_token %}
<input class="button green" type="submit" value="Save">
</div>
</form>
</div>
</div>
</li>
</ul>
</div>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}