From dd3407163c3dcb48ddb60ed2119f5627df01cb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 1 Dec 2011 00:04:20 +0100 Subject: [PATCH] add view for questions --- tabellio/pfbviews/configure.zcml | 7 ++++ tabellio/pfbviews/question.pt | 69 ++++++++++++++++++++++++++++++++ tabellio/pfbviews/question.py | 5 +++ 3 files changed, 81 insertions(+) create mode 100644 tabellio/pfbviews/question.pt create mode 100644 tabellio/pfbviews/question.py diff --git a/tabellio/pfbviews/configure.zcml b/tabellio/pfbviews/configure.zcml index 414c01c..5cb759a 100644 --- a/tabellio/pfbviews/configure.zcml +++ b/tabellio/pfbviews/configure.zcml @@ -33,5 +33,12 @@ permission="zope2.View" /> + diff --git a/tabellio/pfbviews/question.pt b/tabellio/pfbviews/question.pt new file mode 100644 index 0000000..808028a --- /dev/null +++ b/tabellio/pfbviews/question.pt @@ -0,0 +1,69 @@ + + + + + + +
+

Title

+
+ +
+ +
+ +
+ +
+
+ +
+ + +
+ +
+ +
+
    +
  • Ecolo
  • +
+
+
+ +
+ +
+ +
+
+ +
+ +
+
    +
  • Santé
  • +
+
+
+ + + +
+ + + + + + + diff --git a/tabellio/pfbviews/question.py b/tabellio/pfbviews/question.py new file mode 100644 index 0000000..6a398fd --- /dev/null +++ b/tabellio/pfbviews/question.py @@ -0,0 +1,5 @@ +from Products.Five import BrowserView + +class View(BrowserView): + pass +