vstopic.tpl 1022 B

123456789101112131415161718192021222324252627282930
  1. <!-- 토론장 -->
  2. % rebase('base.tpl')
  3. <div id="tool">
  4. <nav class="menu">
  5. <a class="menu-item selected" href="#" onclick="return false">
  6. {{sub}}
  7. </a>
  8. <a class="menu-item" href="/topic/{{page}}">토론 목록</a>
  9. </nav>
  10. </div>
  11. <h1 class="title">
  12. {{title}}
  13. <sub> ({{sub}})</sub>
  14. </h1>
  15. <h2 style="margin-top: -15px;">{{toron}}</h2>
  16. <br>
  17. {{!rows}}
  18. % if(not ban == 1):
  19. <a id="reload" href="javascript:window.location.reload(true);">(갱신)</a> <a href="#reload">(갱신 전에 누르시오)</a>
  20. <form id="usrform" style="{{style}}" method="POST" action="/topic/{{page}}/sub/{{suburl}}">
  21. <br>
  22. <textarea rows="10" cols="100" name="content" form="usrform"></textarea>
  23. <br>
  24. <br>
  25. <button class="btn btn-primary" type="submit">전송</button>
  26. </form>
  27. % if(login == 0 and style == ''):
  28. <span>비 로그인 상태입니다. 비 로그인으로 작업 시 아이피가 토론에 기록됩니다.</span>
  29. % end
  30. % end