my eye

index.html

$def with (system, apps, projects)
$var title: Code

<h2>Projects</h2>
<ul>
$for project in projects:
    <li><a href=/projects/$project>$project</a></li>
</ul>

$if tx.user.is_owner:
    <form action=/snippets method=post>
    <textarea name=code>random.choice("foobarbatbaz")</textarea>
    <button>Run</button>
    </form>