blob: 9154e3db9ca44cebc7b04cefada26e0e000497e1 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Edit {{ post.title }}</title>
</head>
<body>
<h1>Edit post</h1>
<form id="new_post" name="post" method="post" action="/posts/update">
<input type="hidden" name="id" value="{{ post.id }}">
<div class="field">
<label>Title:</label>
<input type="text" name="title" value="{{ post.title }}">
</div>
<div class="field">
<label>Contents:</label>
<textarea name="body">{{ post.body }}</textarea>
</div>
<div class="field">
<input type="checkbox" checked="{{ post.published }}">
<label>Published</label>
</div>
<div class="actions">
<input type="submit" value="Save">
</div>
</form>
</body>
</html>
|