Files
c2py/templates/shell.j2
Sivert V. Sæther ef77991a1f batman
2025-09-26 15:54:44 +02:00

15 lines
360 B
Django/Jinja

{% extends "base.j2" %}
{% block title %}shell - {{ name }}{% endblock %}
{% block head %}
{% endblock %}
{% block body %}
<h1>C2py - shell - {{ name }}</h1>
<form method="get" name="{{ name }}">
<input type="text" name="cmd" autofocus id="cmd" size="80">
<input type="submit" value="Execute">
</form>
{% if res %}
<p>{{ res }}</p>
{% endif %}
{% endblock %}