20 lines
629 B
Twig
20 lines
629 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Series Editor</title>
|
|
</head>
|
|
|
|
<body>
|
|
<select id='series' onchange='retrieveSeries()'>
|
|
<option value='0'>-- Series --</option>
|
|
{% for s in series %}
|
|
<option value='{{ s.id }}'>{{ s.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input type='text' name='series_name' id='series_name' />
|
|
<input type='button' name='save' value='Save' onclick='saveSeries()' />
|
|
<a href='/index.php/'>Back</a>
|
|
|
|
<script src='/js/script.js'></script>
|
|
</body>
|
|
</html> |