/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
- {# Console interface template
- #
- # Copyright 2008-2009 Proven Corporation Co., Ltd., Thailand
- #
- # This file is part of App Engine Console.
- #
- # App Engine Console is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, version 3 of the License.
- #
- # App Engine Console is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with App Engine Console; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- #}
- {% extends "interface.html" %}
- {% block body %}
- {% if ratelimit %}
- <div class="notice">
- <strong>Notice:</strong> To keep the site available to all, a limit is in place of {{ratelimit}} statements per minute. Thank you.
- </div>
- {% endif %}
- <div id="console_interface">
- <form id="console_form" action="/console/statement">
- <div class="issue-list">
- <div id="console_area">
- <div id="console_output"></div>
- </div>
- </div>
- <div id="inputArea">
- <div id="prompt"></div>
- <div id="oneline" class="promptBox">
- <input id="console_statement" name="input_text" type="text" class="textbox">
- </div>
- </div>
- </form>
- </div>
- <div id="pastebin"></div>
- {% endblock %}