2012-08-18 03:21:43 +02:00
<!DOCTYPE html>
< html xmlns = "http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:py="http://genshi.edgewall.org/"
lang="de">
< xi:include href = "layout.html" / >
< head / >
< body >
< h1 > Datenbank< / h1 >
< h2 > Antworten< / h2 >
2012-08-18 18:28:55 +02:00
< p > Pro Frage sind ${Option.select().count()} Antworten (je eine pro Option) mö glich.< / p >
< p > In den ersten 30 Stunden der Umfrage wurden auch leere Antworten (kein Text, keine Auswahl) gezä hlt, sobald ein Klick auf "vorherige Frage" oder "nä chste Frage" erfolgte.
Danach wurden nur noch Antworten mit Inhalt als solche gespeichert.< / p >
2012-08-18 03:21:43 +02:00
< table border = "1" >
< tr >
2012-08-18 18:28:55 +02:00
< th > Frage-Nr.< / th >
< th > gesammelte Antworten< / th >
2012-08-18 03:21:43 +02:00
< / tr >
< tr py:for = "question in Question.select().orderBy('weight')" >
< td > ${question.weight}< / td >
2012-08-18 11:55:32 +02:00
< td > ${Answer.selectBy(question=question).count()}< / td >
2012-08-18 03:21:43 +02:00
< / tr >
< / table >
< h2 > Sitzungen< / h2 >
2012-08-18 18:28:55 +02:00
< p > Eine Sitzung wird angelegt, sobald ein Besucher die Startseite der Umfrage anfordert.< / p >
2012-08-18 03:21:43 +02:00
< table border = "1" >
< tr >
< th > Sitzung #< / th >
2012-08-18 18:28:55 +02:00
< th > Beginn< / th >
< th > beantwortete Fragen< / th >
< th > Dauer (falls Email versandt wurde)< / th >
< th > Versand an ${to_address}?< / th >
2012-08-18 03:21:43 +02:00
< / tr >
< tr py:for = "session in Session.select().orderBy('created')" >
< td > ${session.id}< / td >
< td > ${session.created}< / td >
< td > ${Answer.selectBy(session=session).count()}< / td >
2012-08-18 11:55:32 +02:00
< td > ${[submission.timestamp - submission.session.created for submission in Submission.selectBy(session=session)]}< / td >
2012-08-18 18:28:55 +02:00
< td > ${(Submission.selectBy(session=session, to_default_destination=True).count() > 0) and "Ja" or ""}< / td >
2012-08-18 03:21:43 +02:00
< / tr >
< / table >
< / body >
< / html >