{% 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 %} Save {% else %} {{sketch.title}} By {{sketch.get_owner_name()}} {% endif %} {% 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 %}