help_list.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {include file="public/header" /}
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <div class="subject">
  6. <h3>{$Think.lang.ds_storejoin}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <div class="explanation" id="explanation">
  13. <div class="title" id="checkZoom">
  14. <h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
  15. <span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
  16. </div>
  17. <ul>
  18. <li>{$Think.lang.storejoin_help_list_help1}</li>
  19. </ul>
  20. </div>
  21. <table class="ds-default-table">
  22. <thead>
  23. <tr class="thead">
  24. <th>{$Think.lang.ds_sort}</th>
  25. <th>{$Think.lang.help_title}</th>
  26. <th class="align-center">{$Think.lang.help_updatetime}</th>
  27. <th class="align-center">{$Think.lang.ds_handle}</th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. {notempty name="help_list"}
  32. {foreach name="help_list" item="val"}
  33. <tr class="hover">
  34. <td class="w48 sort">{$val.help_sort}</td>
  35. <td>{$val.help_title}</td>
  36. <td class="w150 align-center">{$val.help_updatetime|date="Y-m-d H:i:s"}</td>
  37. <td class="w150 align-center">
  38. <a href="{:url('Storejoin/edit_help',['help_id'=>$val.help_id])}" class="dsui-btn-edit"><i class="iconfont"></i>{$Think.lang.ds_edit}</a>
  39. </td>
  40. </tr>
  41. {/foreach}
  42. {else}
  43. <tr class="no_data">
  44. <td colspan="15">{$Think.lang.ds_no_record}</td>
  45. </tr>
  46. {/notempty}
  47. </tbody>
  48. </table>
  49. </div>