aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/webpage_export_list.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl/webpage_export_list.tpl')
-rw-r--r--view/tpl/webpage_export_list.tpl35
1 files changed, 35 insertions, 0 deletions
diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl
index d980ea981..faffbf8c6 100644
--- a/view/tpl/webpage_export_list.tpl
+++ b/view/tpl/webpage_export_list.tpl
@@ -47,6 +47,41 @@
{{/foreach}}
</table>
</div>
+
+ <div class="clear"></div>
+ <h4>Layouts</h4>
+ <div>
+ <table class="table-striped table-responsive table-hover" style="width: 100%;">
+ <thead>
+ <tr><th>Export?</th><th>Layout Name</th><th>Layout Description</th><th>Type</th></tr>
+ </thead>
+ {{foreach $layouts as $layout}}
+ <tr>
+ <td>
+ <div class='squaredThree'>
+ <input type="checkbox" id="layout_{{$layout.mid}}" name="layout[]" value="{{$layout.mid}}">
+ <label for="layout_{{$layout.mid}}"></label>
+ </div>
+ </td>
+ <td>
+ <div class="desc">
+ {{$layout.name}}<br>
+ </div>
+ </td>
+ <td>
+ <div class='desc'>
+ {{$layout.description}}<br>
+ </div>
+ </td>
+ <td>
+ <div class='desc'>
+ {{$layout.mimetype}}<br>
+ </div>
+ </td>
+ </tr>
+ {{/foreach}}
+ </table>
+ </div>
</div>
</form>
</div>