{% extends "templates/base.html" %} {% from "www/macros/livecode.html" import LiveCodeEditorLarge, LiveCodeEditorJS with context %} {% block title %}{{sketch.title}}{% endblock %} {% block head_include %} {% endblock %} {% block content %} Sketches {% if editable %} {% else %} {{sketch.title}} {% endif %} By {{sketch.get_owner_name()}} {% if sketch.is_new() and not editable %} Please login to save this sketch. {% endif %} {{LiveCodeEditorLarge(sketch.name, sketch.code) }} {% endblock %} {%- block script %} {{ super() }} {{ LiveCodeEditorJS() }} {%- endblock %}