1.1 --- a/templates/graph.html Mon Feb 03 23:07:26 2020 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,79 +0,0 @@
1.4 -{% extends "theme.html" %}
1.5 -<head>
1.6 -}
1.7 -label{
1.8 -font-size: 18;
1.9 -}
1.10 -
1.11 -font-family {
1.12 -Timed New Roman, sans-serif;
1.13 -}
1.14 -
1.15 -select {
1.16 -font-size:14;
1.17 -border-color: gray;
1.18 -}
1.19 -
1.20 -input{
1.21 -font-color: black;
1.22 -font-size: 16;
1.23 -border-color: gray;
1.24 -}
1.25 -
1.26 -</head>
1.27 -{% block body %}
1.28 -<div class="container">
1.29 -<div class="col-lg-12">
1.30 -<div class="row">
1.31 -{{ content|safe }}
1.32 -</div>
1.33 -
1.34 -<br>
1.35 -
1.36 -<form method="post" action="/ozoneloss/uvi_graph">
1.37 -<table border="0" width="100%">
1.38 - <tr> <h4>
1.39 - <p> UV-Index für
1.40 - <select name="Dobson-Unit" size="1" font-size="14" border-color="gray">
1.41 - <option>{{o3offsetstr}}</option>
1.42 - <option>25</option>
1.43 - <option>50</option>
1.44 - <option>75</option>
1.45 - <option>100</option>
1.46 - </select>
1.47 - DU zusätzlichen Ozonverlust bei der Breite
1.48 - <select name="Gradzahl" size="1" font-size="14" border-color="gray">
1.49 - <option>{{latstr}}</option>
1.50 - <option>80° N</option>
1.51 - <option>70° N</option>
1.52 - <option>60° N</option>
1.53 - <option>50° N</option>
1.54 - <option>50° S</option>
1.55 - <option>60° S</option>
1.56 - <option>70° S</option>
1.57 - <option>80° S</option>
1.58 - </select>
1.59 - :
1.60 - <input type="submit" value="{{button_text}}" font-color="black" font-size="16" border-color="gray"/>
1.61 - </p>
1.62 - </h4>
1.63 -</tr>
1.64 -</table>
1.65 -</form>
1.66 -<br>
1.67 -<img src="/static/images/uvindex/{{figname}}" border="6">
1.68 -<br>
1.69 -{{ html_table|safe }}
1.70 -<br>
1.71 -<br>
1.72 -
1.73 -<div class="row">
1.74 -{{ content_explanation|safe }}
1.75 -{{ modal_info|safe }}
1.76 -</div>
1.77 -
1.78 -</div>
1.79 -
1.80 -</div>
1.81 -
1.82 -{% endblock %}