diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-08-20 16:05:27 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-08-20 16:05:27 -0400 |
commit | 2d42d587388aeaedf8b53b2b56b3b4ccda37af03 (patch) | |
tree | 9e2e142ecb142078587cab8d5c1b70b672cbd1f7 /view | |
parent | 80ed05d45d0e9f7f23848919a3a8af388988fdd9 (diff) | |
download | volse-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')
-rw-r--r-- | view/tpl/webpage_export_list.tpl | 35 |
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> |