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