PageRenderTime 20ms CodeModel.GetById 12ms app.highlight 6ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): GPL-3.0
 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
21{% extends "interface.html" %}
22
23{% block body %}
24    {% if ratelimit %}
25        <div class="notice">
26            <strong>Notice:</strong> To keep the site available to all, a limit is in place of {{ratelimit}} statements per minute.  Thank you.
27        </div>
28    {% endif %}
29    <div id="console_interface">
30        <form id="console_form" action="/console/statement">
31            <div class="issue-list">
32                <div id="console_area">
33                    <div id="console_output"></div>
34                </div>
35            </div>
36
37            <div id="inputArea">
38                <div id="prompt"></div>
39                <div id="oneline" class="promptBox">
40                    <input id="console_statement" name="input_text" type="text" class="textbox">
41                </div>
42            </div>
43        </form>
44    </div>
45
46    <div id="pastebin"></div>
47{% endblock %}