diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-08-21 06:53:19 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-08-21 06:53:19 -0400 |
commit | d39cf23b2f15ed94048ea7596d7581be7ef8c001 (patch) | |
tree | 161bcf835e3a946846af1f3d0f1b8a4c8dd87833 /view | |
parent | 1c61e316b477460f05b263b9a01cc5d37b5e8cb6 (diff) | |
download | volse-hubzilla-d39cf23b2f15ed94048ea7596d7581be7ef8c001.tar.gz volse-hubzilla-d39cf23b2f15ed94048ea7596d7581be7ef8c001.tar.bz2 volse-hubzilla-d39cf23b2f15ed94048ea7596d7581be7ef8c001.zip |
Visual improvements to the export element table
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/webpage_export_list.tpl | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index 1df4586b0..1d28f62df 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -12,33 +12,33 @@ <div class="pull-left"> <button id="toggle-select-all" class="btn btn-xs btn-primary" onclick="checkedAll(window.isChecked); return false;"><i class="fa fa-check"></i> Toggle Select All</button> </div> - <div class="clear"></div> - <h4>Pages</h4> + <hr> + <!--<h4>Pages</h4>--> <div> <table class="table-striped table-responsive table-hover" style="width: 100%;"> <thead> - <tr><th>Export?</th><th>Page Title</th><th>Page Link</th><th>Type</th></tr> + <tr><th></th><th>Page Link</th><th>Page Title</th><th>Type</th></tr> </thead> {{foreach $pages as $page}} <tr> - <td> + <td width="30px" style="padding-right: 20px;"> <div class='squaredThree'> <input type="checkbox" id="page_{{$page.mid}}" name="page[]" value="{{$page.mid}}"> <label for="page_{{$page.mid}}"></label> </div> </td> - <td> + <td width="30%"> <div class="desc"> - {{$page.title}}<br> + {{$page.pagetitle}}<br> </div> </td> - <td> + <td width="55%"> <div class='desc'> - {{$page.pagetitle}}<br> + {{$page.title}}<br> </div> </td> - <td> + <td width="15%"> <div class='desc'> {{$page.mimetype}}<br> </div> @@ -47,33 +47,33 @@ {{/foreach}} </table> </div> - + <hr> <div class="clear"></div> - <h4>Layouts</h4> + <!--<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> + <tr><th width="20px"></th><th>Layout Name</th><th>Layout Description</th><th>Type</th></tr> </thead> {{foreach $layouts as $layout}} <tr> - <td> + <td width="30px" style="padding-right: 20px;"> <div class='squaredThree'> <input type="checkbox" id="layout_{{$layout.mid}}" name="layout[]" value="{{$layout.mid}}"> <label for="layout_{{$layout.mid}}"></label> </div> </td> - <td> + <td width="30%"> <div class="desc"> {{$layout.name}}<br> </div> </td> - <td> + <td width="55%"> <div class='desc'> {{$layout.description}}<br> </div> </td> - <td> + <td width="15%"> <div class='desc'> {{$layout.mimetype}}<br> </div> @@ -82,33 +82,33 @@ {{/foreach}} </table> </div> - + <hr> <div class="clear"></div> - <h4>Blocks</h4> + <!--<h4>Blocks</h4>--> <div> <table class="table-striped table-responsive table-hover" style="width: 100%;"> <thead> - <tr><th>Export?</th><th>Block Title</th><th>Block Name</th><th>Type</th></tr> + <tr><th width="30px"></th><th>Block Name</th><th>Block Title</th><th>Type</th></tr> </thead> {{foreach $blocks as $block}} <tr> - <td> + <td width="30px" style="padding-right: 20px;"> <div class='squaredThree'> <input type="checkbox" id="block_{{$block.mid}}" name="block[]" value="{{$block.mid}}"> <label for="block_{{$block.mid}}"></label> </div> </td> - <td> + <td width="30%"> <div class="desc"> - {{$block.title}}<br> + {{$block.name}}<br> </div> </td> - <td> + <td width="55%"> <div class='desc'> - {{$block.name}}<br> + {{$block.title}}<br> </div> </td> - <td> + <td width=15%"> <div class='desc'> {{$block.mimetype}}<br> </div> |