Praezisierung der Datenbank-Auswertung

This commit is contained in:
lars 2012-08-18 16:28:55 +00:00
parent 6242294d3b
commit 66fa8322e7

View file

@ -12,10 +12,13 @@
<h1>Datenbank</h1> <h1>Datenbank</h1>
<h2>Antworten</h2> <h2>Antworten</h2>
<p>Pro Frage sind ${Option.select().count()} Antworten (je eine pro Option) m&ouml;glich.</p>
<p>In den ersten 30 Stunden der Umfrage wurden auch leere Antworten (kein Text, keine Auswahl) gez&auml;hlt, sobald ein Klick auf "vorherige Frage" oder "n&auml;chste Frage" erfolgte.
Danach wurden nur noch Antworten mit Inhalt als solche gespeichert.</p>
<table border="1"> <table border="1">
<tr> <tr>
<th>Frage #</th> <th>Frage-Nr.</th>
<th>Anzahl</th> <th>gesammelte Antworten</th>
</tr> </tr>
<tr py:for="question in Question.select().orderBy('weight')"> <tr py:for="question in Question.select().orderBy('weight')">
<td>${question.weight}</td> <td>${question.weight}</td>
@ -24,22 +27,21 @@
</table> </table>
<h2>Sitzungen</h2> <h2>Sitzungen</h2>
<p>Eine Sitzung wird angelegt, sobald ein Besucher die Startseite der Umfrage anfordert.</p>
<table border="1"> <table border="1">
<tr> <tr>
<th>Sitzung #</th> <th>Sitzung #</th>
<th>Datum</th> <th>Beginn</th>
<th>Fragen</th> <th>beantwortete Fragen</th>
<th>versandt</th> <th>Dauer (falls Email versandt wurde)</th>
<th>Standard?</th> <th>Versand an ${to_address}?</th>
<th>Dauer</th>
</tr> </tr>
<tr py:for="session in Session.select().orderBy('created')"> <tr py:for="session in Session.select().orderBy('created')">
<td>${session.id}</td> <td>${session.id}</td>
<td>${session.created}</td> <td>${session.created}</td>
<td>${Answer.selectBy(session=session).count()}</td> <td>${Answer.selectBy(session=session).count()}</td>
<td>${Submission.selectBy(session=session).count() > 0}</td>
<td>${Submission.selectBy(session=session, to_default_destination=True).count() > 0}</td>
<td>${[submission.timestamp - submission.session.created for submission in Submission.selectBy(session=session)]}</td> <td>${[submission.timestamp - submission.session.created for submission in Submission.selectBy(session=session)]}</td>
<td>${(Submission.selectBy(session=session, to_default_destination=True).count() > 0) and "Ja" or ""}</td>
</tr> </tr>
</table> </table>