Fixed a bug in the edit template.

This commit is contained in:
Raoul Snyman 2010-02-22 23:22:47 +02:00
commit 37885d7578
1 changed files with 3 additions and 3 deletions

View File

@ -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>