Fixed a problem in the edit template that prevented posts from being saved.
This commit is contained in:
parent
d2bfec7c2e
commit
4080489478
@ -7,15 +7,15 @@
|
||||
<fieldset>
|
||||
<div class="form-item">
|
||||
<!-- <label for="post-title">Title:</label> -->
|
||||
<input type="text" name="title" value="${c.post.title}" id="post-title" class="form-text" />
|
||||
<input type="text" name="post-title" value="${c.post.title}" id="post-title" class="form-text" />
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<!-- <label for="post-body">Body:</label> -->
|
||||
<textarea name="body" id="post-body" class="form-textarea">${c.post.body}</textarea>
|
||||
<textarea name="post-body" id="post-body" class="form-textarea">${c.post.body}</textarea>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<label for="post-tags">Tags:</label>
|
||||
<input type="text" name="tags" id="post-tags" class="form-text" value="${c.post.tags_list}" />
|
||||
<input type="text" name="post-tags" id="post-tags" class="form-text" value="${c.post.tags_list}" />
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<label for="post-authored">Authored:</label>
|
||||
|
Reference in New Issue
Block a user