blob: b06643777b443c1fdb32b9732624c3c690c6aadc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{% extends 'card/card.twig' %}
{% block pagetitle %}
Edit Card
{% endblock %}
{% block pagecontent %}
<div class="content">
<form action="/card/{{ card.id }}/edit" method="post" enctype="multipart/form-data">
{% for meta in card.meta %}
<p>
<label>{{ meta.key }}</label><br>
<input type="text" name="{{ meta.key }}" value="{{ meta.value }}">
</p>
{% endfor %}
<input type="submit" value="Save">
</form>
</div>
<div class="content content-header">
<h3>Edit Artworks</h3>
</div>
<div class="content">
<button>Add Artwork</button>
</div>
{% for artwork in card.artworks %}
<div class="content">
<img class="image" src='{{ artwork.path }}'>
<button onclick="location.href='/artwork/{{ artwork.id }}/edit'">Edit</button>
<button>Remove</button>
</div>
{% endfor %}
{% endblock %}
|