/console/app/view/templates/console_.html

https://bitbucket.org/alex_muscar/myspace-competition-radar · HTML · 47 lines · 43 code · 4 blank · 0 comment · 0 complexity · 6ec180f3e75e812dbaa4916444161d2a MD5 · raw file

  1. {# Console interface template
  2. #
  3. # Copyright 2008-2009 Proven Corporation Co., Ltd., Thailand
  4. #
  5. # This file is part of App Engine Console.
  6. #
  7. # App Engine Console is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, version 3 of the License.
  10. #
  11. # App Engine Console is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with App Engine Console; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. #}
  20. {% extends "interface.html" %}
  21. {% block body %}
  22. {% if ratelimit %}
  23. <div class="notice">
  24. <strong>Notice:</strong> To keep the site available to all, a limit is in place of {{ratelimit}} statements per minute. Thank you.
  25. </div>
  26. {% endif %}
  27. <div id="console_interface">
  28. <form id="console_form" action="/console/statement">
  29. <div class="issue-list">
  30. <div id="console_area">
  31. <div id="console_output"></div>
  32. </div>
  33. </div>
  34. <div id="inputArea">
  35. <div id="prompt"></div>
  36. <div id="oneline" class="promptBox">
  37. <input id="console_statement" name="input_text" type="text" class="textbox">
  38. </div>
  39. </div>
  40. </form>
  41. </div>
  42. <div id="pastebin"></div>
  43. {% endblock %}