/modules/mod_survey/templates/survey.tpl

https://code.google.com/p/zotonic/ · Smarty Template · 24 lines · 18 code · 6 blank · 0 comment · 1 complexity · 8e1624f6240162923aedf764d19df188 MD5 · raw file

  1. {% extends "page.tpl" %}
  2. {% block content %}
  3. <style type="text/css">
  4. .survey-question {
  5. border: 1px solid white;
  6. background-color: #f8f8f8;
  7. padding: 4px;
  8. margin-bottom: 4px;
  9. }
  10. .survey-missing {
  11. background-color: #fee;
  12. border: 1px solid #fcc;
  13. }
  14. </style>
  15. <div id="survey-question">
  16. {% include "_survey_start.tpl" %}
  17. </div>
  18. {% endblock %}