history.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <include file="Common/header" />
  2. <style type="text/css">
  3. .single-cat{
  4. margin: 10px;
  5. }
  6. </style>
  7. <div id="edit-cat" class="modal hide fade">
  8. <div class="modal-header">
  9. <h4>历史版本</h4>
  10. </div>
  11. <table class="table table-hover">
  12. <TR>
  13. <td>修改时间</td>
  14. <td>修改人</td>
  15. <td>操作</td>
  16. </TR>
  17. <if condition="$PageHistory">
  18. <foreach name="PageHistory" item="value">
  19. <TR>
  20. <td>{$value.addtime}</td>
  21. <td>{$value.author_username}</td>
  22. <td><a href="edit?page_id={$page_id}&page_history_id={$value.page_history_id}">恢复到此版本</a></td>
  23. </TR>
  24. </foreach>
  25. </if>
  26. </table>
  27. <div class="modal-footer">
  28. <a href="edit?page_id={$page_id}" class="btn exist-cat">关闭</a>
  29. <a href="edit?page_id={$page_id}" class="btn btn-primary exist-cat">完成</a>
  30. </div>
  31. </div>
  32. <input type="hidden" id="page_id" value="{$page_id}">
  33. <include file="Common/footer" />
  34. <script type="text/javascript">
  35. $(function(){
  36. $('#edit-cat').modal();
  37. })
  38. </script>