templates/graph.html
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Thu, 05 Feb 2015 10:49:25 +0100
changeset 385 1f938cb838e7
parent 381 47e241d341d3
child 391 0310a10ab15b
permissions -rw-r--r--
Auswahlmechanismus vereinfacht:
-> in der ?berschrift ?ber dem UV-Index Bild
j@381
     1
{% extends "theme.html" %}
j@385
     2
<head>
j@385
     3
}
j@385
     4
label{
j@385
     5
font-size: 18;
j@385
     6
}
j@381
     7
j@385
     8
font-family {
j@385
     9
Timed New Roman, sans-serif;
j@385
    10
}
j@381
    11
j@385
    12
select {
j@385
    13
font-size:14;
j@385
    14
border-color: gray;
j@385
    15
}
j@381
    16
j@385
    17
input{
j@385
    18
font-color: black;
j@385
    19
font-size: 16;
j@385
    20
border-color: gray;
j@385
    21
}
j@381
    22
j@385
    23
</head>
j@381
    24
{% block body %}
j@385
    25
<div class="container">
j@385
    26
<div class="col-lg-12">
j@385
    27
<div class="row">
j@385
    28
{{ content|safe }}
j@385
    29
</div>
j@381
    30
j@385
    31
<br>
j@381
    32
j@385
    33
<form method="post" action="/ozoneloss/uvi_graph">
j@385
    34
<table border="0" width="100%">
j@385
    35
  <tr> <h4>
j@385
    36
    <p> UV-Index für
j@385
    37
    <select name="Dobson-Unit" size="1" font-size="14"  border-color="gray">
j@385
    38
      <option>{{o3offsetstr}}</option>
j@385
    39
      <option>25</option>
j@385
    40
      <option>50</option>
j@385
    41
      <option>75</option>
j@385
    42
      <option>100</option>
j@385
    43
    </select>
j@385
    44
    DU Ozonverlust bei der Breite
j@385
    45
    <select name="Gradzahl" size="1" font-size="14"  border-color="gray">
j@385
    46
      <option>{{latstr}}</option>
j@385
    47
      <option>80° N</option>
j@385
    48
      <option>70° N</option>
j@385
    49
      <option>60° N</option>
j@385
    50
      <option>50° N</option>
j@385
    51
      <option>50° S</option>
j@385
    52
      <option>60° S</option>
j@385
    53
      <option>70° S</option>
j@385
    54
      <option>80° S</option>
j@385
    55
    </select>
j@385
    56
    : &nbsp;&nbsp;&nbsp;
j@385
    57
    <input type="submit" value="Graph anzeigen" font-color="black" font-size="16" border-color="gray"/>
j@385
    58
    </p>
j@385
    59
    </h4>		 
j@385
    60
</tr>
j@385
    61
</table>
j@385
    62
</form>
j@385
    63
<br>
j@385
    64
<img src="/static/images/uvindex/{{figname}}" border="6">
j@381
    65
j@385
    66
<br>
j@385
    67
<br>
j@381
    68
j@385
    69
Die unten stehenden Tabelle gibt einen Anhaltspunkt für die Bedeutung der verschiedenen UV-Indices:
j@385
    70
<br>
j@385
    71
<br>
j@385
    72
<table border="black">
j@385
    73
  <colgroup>
j@385
    74
  <col width="100">
j@385
    75
  <col width="100">
j@385
    76
  <col width="400">
j@385
    77
  </colgroup>
j@385
    78
  <tr>
j@385
    79
    <th align="center" bgcolor="#E0E0E0">UV-Index</th>
j@385
    80
    <th align="center" bgcolor="#E0E0E0">Bewertung</th>
j@385
    81
    <th align="center" bgcolor="#E0E0E0">Schutz</th>
j@385
    82
  </tr>
j@385
    83
  <tr>
j@385
    84
    <td align="center" bgcolor="#00B000">0 – 2</td>
j@385
    85
    <td align="center" bgcolor="#00B000">niedrig</td>
j@385
    86
    <td style="padding-left:25px;">Kein Schutz erforderlich</td>
j@385
    87
  </tr>
j@385
    88
  <tr>
j@385
    89
    <td align="center" bgcolor="#FFFF00">3 – 5</td>
j@385
    90
    <td align="center" bgcolor="#FFFF00">mäßig</td>
j@385
    91
    <td style="padding-left:25px;">Schutz erforderlich: Hut, T-Shirt, Sonnenbrille, Sonnencreme</td>
j@385
    92
  </tr>
j@385
    93
  <tr>
j@385
    94
    <td align="center" bgcolor="#F87820">6 – 7</td>
j@385
    95
    <td align="center" bgcolor="#F87820">hoch</td>
j@385
    96
    <td style="padding-left:25px;">Schutz erforderlich: Hut, T-Shirt, Sonnenbrille, Sonnencreme</td>
j@385
    97
  </tr>
j@385
    98
  <tr>
j@385
    99
    <td align="center" bgcolor="#FF0000">8 – 10</td>
j@385
   100
    <td align="center" bgcolor="#FF0000">sehr hoch</td>
j@385
   101
    <td style="padding-left:25px;">zusätzlicher Schutz erforderlich: Aufenthalt im Freien möglichst vermeiden</td>
j@385
   102
  </tr>
j@385
   103
  <tr>
j@385
   104
    <td align="center" bgcolor="#7F00FF">≥ 11</td>
j@385
   105
    <td align="center" bgcolor="#7F00FF">extrem</td>
j@385
   106
    <td style="padding-left:25px;">zusätzlicher Schutz erforderlich: Aufenthalt im Freien möglichst vermeiden</td>
j@385
   107
  </tr>
j@385
   108
</table>
j@385
   109
<h6>Quelle: Schweizerisches Bundesamt für Gesundheit <a href="http://www.uv-index.ch/de/uvindex.html"> www.uv-index.ch/de/uvindex.html</a></h6>
j@381
   110
j@381
   111
j@385
   112
<div class="row">
j@385
   113
{{ content_explanation|safe }}
j@385
   114
{{ modal_info|safe }}
j@385
   115
</div>
j@381
   116
j@385
   117
</div>
j@381
   118
j@385
   119
</div>
j@381
   120
j@381
   121
{% endblock %}
Impressum Datenschutzerklärung