Show all artist properties on admin interface.
[demoscenemusic.git] / src / main / resources / templates / admin.edit-artist
1 <%include include/header title=="Edit Artist">
2
3 <h1>Edit Artist</h1>
4
5 <form method="post" accept-charset="utf-8">
6
7         <label>Name: <input type="text" name="name" value="<% artist.name|html>"/></label>
8         <button type="submit">Edit Artist</button>
9
10         <%foreach artist.properties property>
11
12                 <label>Property: <input type="text" name="property.<%loop.count>" value="<%property.key|html>"/> <input type="text" name="value.<%loop.count>" value="<%property.value|html>"/>
13
14         <%/foreach>
15
16 </form>
17
18 <%include include/footer>