weitere Verbesserungen bis zur finalen Einsatzreife
This commit is contained in:
parent
59ccb5a87c
commit
68a8aca17b
12 changed files with 1210 additions and 109 deletions
|
@ -14,24 +14,74 @@
|
|||
</py:match>
|
||||
|
||||
<tr py:match="trRenderOptionTitle" class="option_title">
|
||||
<th py:for="column, option in enumerate(options)" class="column${column % 2}">${option.title}</th>
|
||||
<th py:for="column, option in enumerate(options)" class="column${column}">${option.title}</th>
|
||||
</tr>
|
||||
|
||||
<tr py:match="trRenderOptionImage" class="option_image">
|
||||
<td py:for="column, option in enumerate(options)" class="column${column % 2}"><img src="${option.image}" width="${1024/len(options)}" /></td>
|
||||
<td py:for="column, option in enumerate(options)" class="column${column}"><img src="${option.image}" width="${1024/len(options)}" /></td>
|
||||
</tr>
|
||||
|
||||
<tr py:match="trRenderOptionText" class="option_text">
|
||||
<td py:for="column, option in enumerate(options)" class="column${column % 2}"><ul><li py:for="line in option.text.splitlines()">${line}</li></ul></td>
|
||||
<td py:for="column, option in enumerate(options)" class="column${column}"><ul><li py:for="line in option.text.splitlines()">${line}</li></ul></td>
|
||||
</tr>
|
||||
|
||||
<py:match path="body" once="true">
|
||||
<body py:attrs="select('@*')">
|
||||
|
||||
<div id="fullpage">
|
||||
|
||||
<div py:if="errors" class="error">
|
||||
<ul><li py:for="error in errors">${error}</li></ul>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
${select('*|text()')}
|
||||
</div>
|
||||
|
||||
|
||||
<div id="footer">
|
||||
|
||||
<div class="credits">
|
||||
<h2>Quellen</h2>
|
||||
<dl class="credits">
|
||||
<dt>Beschreibung und Illustration der Planungsvarianten</dt>
|
||||
<dd><a href="http://rathaus.rostock.de" title="Rostock">Stadt Rostock</a></dd>
|
||||
<dt>Kartendaten</dt>
|
||||
<dd><a href="http://openstreetmap.org/?mlat=54.17685&mlon=12.0851&zoom=17"
|
||||
title="OpenStreetMap">OpenStreetMap</a></dd>
|
||||
<dt>Markierungssymbol auf der Karte</dt>
|
||||
<dd><a href="http://openclipart.org/detail/169047/red-map-marker-by-mightyman" title="OpenClipArt">mightyman</a></dd>
|
||||
<dt>Code (GPL-lizensiert)</dt>
|
||||
<dd><a href="https://systemausfall.org/svn/codekasten/umfrage_kirchenplatz2012"
|
||||
title="Quellcode">Quellcode via Subversion</a></dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
<div class="privacy">
|
||||
<h2>Datenschutzerklärung</h2>
|
||||
<ul>
|
||||
<li>Ihre Kommentare und Bewertungen werden gespeichert.</li>
|
||||
<li>Emailadressen werden nicht gespeichert.</li>
|
||||
<li>Es besteht keine Verbindung zwischen Ihrer Identität und Ihren Eingaben.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="imprint">
|
||||
<h2>Impressum</h2>
|
||||
<p class="imprint">
|
||||
Sense.Lab e.V.<br/>
|
||||
Ludwigstrasse 20<br/>
|
||||
18055 Rostock<br/>
|
||||
<br/>
|
||||
info [at] senselab.org<br/>
|
||||
<a href="http://senselab.org">http://senselab.org</a><br/>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div><!-- footer -->
|
||||
|
||||
</div><!-- fullpage -->
|
||||
|
||||
</body>
|
||||
</py:match>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue