forked from saurabh/orbit4-5
added active and survey module templates
This commit is contained in:
parent
46ec4be6a2
commit
f3000d1947
|
@ -0,0 +1,24 @@
|
|||
<table class="table table-hover table-striped active-index">
|
||||
<caption>
|
||||
<h3>{{page-title}}</h3>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="col-md-2">{{th_category}}</th>
|
||||
<th class="col-md-2">{{th_act_time_range}}</th>
|
||||
<th class="col-md-5">{{th_title}}</th>
|
||||
<th class="col-md-2">{{th_sign_up_time_range}}</th>
|
||||
<th class="col-md-2">{{th_sign_up}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody data-level="0" data-list="acts">
|
||||
<tr>
|
||||
<td>{{category}}</td>
|
||||
<td>{{act_start_date}} ~ <br /> {{act_end_date}}</td>
|
||||
<td>{{title}}</td>
|
||||
<td>{{sign_start_date}} ~ <br /> {{sign_end_date}}</td>
|
||||
<td>{{sign_up}}</i></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{pagination_goes_here}}
|
|
@ -0,0 +1,20 @@
|
|||
<table class="table table-hover table-striped survey-index">
|
||||
<caption><h3>{{page-title}}</h3></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="col-md-6">{{th_title}}</th>
|
||||
<th class="col-md-3">{{th_time_range}}</th>
|
||||
<th class="col-md-1">{{th_write}}</th>
|
||||
<th class="col-md-1">{{th_result}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody data-level="0" data-list="surveys">
|
||||
<tr>
|
||||
<td>{{title}}</td>
|
||||
<td>{{time_range}}</td>
|
||||
<td>{{write}}</td>
|
||||
<td>{{result}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{pagination_goes_here}}
|
Loading…
Reference in New Issue