Initial commit

This commit is contained in:
Antoine Martin 2022-05-13 03:04:13 +02:00
commit 7a053983a7
20 changed files with 333 additions and 0 deletions

View file

@ -0,0 +1,4 @@
<h1>{{ object.name }}</h1>
<p>Créateur : {{ object.author_name }}</p>
<iframe src="https://scratch.mit.edu/projects/{{ object.project_id }}/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no" allowfullscreen></iframe>

View file

@ -0,0 +1,4 @@
<form method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save">
</form>