source: Dev/trunk/src/client/qed-client/pages/templates/surveys.html

Last change on this file was 531, checked in by hendrikvanantwerpen, 11 years ago
  • Return to using truly ISO formatted dates, including milliseconds.
  • Also set constraint on surveyrun dates when value is initially set.
  • Separate runs & results from surveys and questions.
  • Moved date & email format to schema itself.
File size: 1.8 KB
Line 
1<div>
2
3    <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'">
4        <h2>
5            <span class="rftIcon rftIconSurvey"></span>
6            <span class="headerText">Surveys</span>
7        </h2>
8    </div>
9
10    <div data-dojo-attach-point="tabContainer"
11         data-dojo-type="dijit/layout/TabContainer"
12         class="blue" data-dojo-props="tabPosition:'left-h',region:'center'">
13
14        <div data-dojo-type="dijit/layout/BorderContainer"
15             title="Drafts"
16             data-dojo-attach-point="draftsTab">
17            <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region: 'center'" data-dojo-attach-point="draftsContainer">
18            </div>
19            <div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region: 'bottom'" style="height: 40px;">
20            </div>
21        </div>
22
23        <div data-dojo-type="dijit/layout/BorderContainer"
24             title="Published"
25             data-dojo-attach-point="publishedTab">
26            <div data-dojo-type="dijit/layout/ContentPane"
27                 data-dojo-props="region: 'center'"
28                 data-dojo-attach-point="publishedContainer">
29            </div>
30            <div data-dojo-type="dijit/layout/ContentPane"
31                 data-dojo-props="region: 'bottom'"
32                 style="height: 40px;">
33            </div>
34        </div>
35
36    </div>
37
38    <div data-dojo-type="dijit/layout/ContentPane"
39         data-dojo-props="region: 'bottom'"
40         style="height: 40px;">
41        <button data-dojo-type="dijit/form/Button"
42                class="blue"
43                data-dojo-props="baseClass: 'rftLargeButton', iconClass: 'rftIcon rftIconNew'"
44                data-dojo-attach-event="onClick:_onNewSurvey">New survey</button>
45    </div>
46
47</div>
Note: See TracBrowser for help on using the repository browser.