aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/webpage_export_list.tpl
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-08-20 16:05:27 -0400
committerAndrew Manning <tamanning@zoho.com>2016-08-20 16:05:27 -0400
commit2d42d587388aeaedf8b53b2b56b3b4ccda37af03 (patch)
tree9e2e142ecb142078587cab8d5c1b70b672cbd1f7 /view/tpl/webpage_export_list.tpl
parent80ed05d45d0e9f7f23848919a3a8af388988fdd9 (diff)
downloadvolse-hubzilla-2d42d587388aeaedf8b53b2b56b3b4ccda37af03.tar.gz
volse-hubzilla-2d42d587388aeaedf8b53b2b56b3b4ccda37af03.tar.bz2
volse-hubzilla-2d42d587388aeaedf8b53b2b56b3b4ccda37af03.zip
Layouts list and are selectable for export to the zip file
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>