detail.html 693 B

12345678910111213141516171819202122
  1. <table class="table table-striped">
  2. <thead>
  3. <tr>
  4. <th>{:__('Title')}</th>
  5. <th>{:__('Content')}</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. {volist name="row" id="vo" }
  10. <tr>
  11. <td>{:__($key)}</td>
  12. <td>{if $key=='createtime'}{$vo|datetime}{else/}{$vo|htmlentities}{/if}</td>
  13. </tr>
  14. {/volist}
  15. </tbody>
  16. </table>
  17. <div class="hide layer-footer">
  18. <label class="control-label col-xs-12 col-sm-2"></label>
  19. <div class="col-xs-12 col-sm-8">
  20. <button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
  21. </div>
  22. </div>