diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-08-20 15:22:30 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-08-20 15:22:30 -0400 |
commit | 80ed05d45d0e9f7f23848919a3a8af388988fdd9 (patch) | |
tree | 1e37968678c75eac9dc062db721dc291db23f1d0 /view | |
parent | cf93d9c3b42a4ab1dd9c4199b3b0711cc41b2dbb (diff) | |
download | volse-hubzilla-80ed05d45d0e9f7f23848919a3a8af388988fdd9.tar.gz volse-hubzilla-80ed05d45d0e9f7f23848919a3a8af388988fdd9.tar.bz2 volse-hubzilla-80ed05d45d0e9f7f23848919a3a8af388988fdd9.zip |
Export of pages and their layouts to a zip file works. Bug on importing the exported zip file for pages.
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/webpage_export_list.tpl | 6 | ||||
-rw-r--r-- | view/tpl/website_portation_tools.tpl | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index 1b943ace8..d980ea981 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -17,7 +17,9 @@ <h4>Pages</h4> <div> <table class="table-striped table-responsive table-hover" style="width: 100%;"> - <tr><td>Export?</td><td>Page Title</td><td>Page Link</td><td>Type</td></tr> + <thead> + <tr><th>Export?</th><th>Page Title</th><th>Page Link</th><th>Type</th></tr> + </thead> {{foreach $pages as $page}} <tr> <td> @@ -27,7 +29,7 @@ </div> </td> <td> - <div class='desc'> + <div class="desc"> {{$page.title}}<br> </div> </td> diff --git a/view/tpl/website_portation_tools.tpl b/view/tpl/website_portation_tools.tpl index d9ebed179..2f68a7393 100644 --- a/view/tpl/website_portation_tools.tpl +++ b/view/tpl/website_portation_tools.tpl @@ -46,7 +46,7 @@ <div class="form-group"> <div class="input-group"> - <input class="widget-input" type="text" name="filename" title="{{$filename_hint}}" placeholder="{{$filename_desc}}" /> + <input class="widget-input" type="text" name="zipfilename" title="{{$filename_hint}}" placeholder="{{$filename_desc}}" value="" /> <div class="input-group-btn"> <button class="btn btn-default btn-sm" type="submit" name="w_download" value="w_download"><i class="fa fa-download generic-icons"></i></button> </div> |