6
6
<div id="console_body" py:attrs="start_body_attrs">
7
<h1 py:if="not windowpane">Python Console</h1>
7
8
<div id="console_heading" py:if="windowpane">Python Console
8
9
<span class="console_button minimize">
9
10
<a onclick="console_minimize()"
15
16
<div id="console_body2">
16
17
<pre id="console_output" class='outputMsg'></pre>
17
18
<div id="console_input">
20
<label id="console_prompt">>>> </label>
22
<div id="console_inputCell">
23
<input id="console_inputText" type="text"
24
onkeydown="return catch_input(event.keyCode)" />
27
<input type='button' value='Interrupt'
28
onclick='set_interrupt();'/>
29
<input type='button' value='Clear Output'
30
onclick='return clear_output();'/>
31
<input type='button' value='Reset'
32
onclick='console_reset();'/>
34
<div py:if="windowpane" class="console_button maximize">
35
<a onclick="console_maximize()"
36
title="Open up the Python console">
37
<img src="${maximize_path}" alt="Maximize"/>
19
<div id="console_inputArea">
21
<label id="console_prompt">>>> </label>
22
<input id="console_inputText" type="text" size="80"
23
onkeypress="return catch_input(event.keyCode)" />
24
<input type='button' value='Interrupt' onclick='set_interrupt();'/>
25
<input type='button' value='Clear Output' onclick='return clear_output();'/>
26
<input type='button' value='Reset' onclick='console_reset();'/>
27
<span py:if="windowpane" class="console_button maximize">
28
<a onclick="console_maximize()"
29
title="Open up the Python console">
30
<img src="${maximize_path}" alt="Maximize"/>