Templates
This commit is contained in:
20
templates/editors/series-editor.html.twig
Normal file
20
templates/editors/series-editor.html.twig
Normal file
@ -0,0 +1,20 @@
|
||||
<!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>
|
Reference in New Issue
Block a user