Vulcan/client/templates/comment_edit.html

16 lines
559 B
HTML
Raw Normal View History

<template name="comment_edit">
<div class="grid submit">
2012-09-06 11:34:05 +09:00
{{#with comment}}
<form class="grid-block form-horizontal">
2012-09-06 11:34:05 +09:00
<div class="control-group">
<label class="control-label">Comment</label>
2012-09-13 10:55:05 +09:00
<div class="controls" id="editor"><textarea id="body" value="" class="input-xlarge">{{body}}</textarea></div>
2012-09-06 11:34:05 +09:00
</div>
<div class="form-actions">
2012-09-07 10:57:57 +09:00
<a class="delete-link" href="/comments/deleted">Delete Comment</a>
2012-09-06 11:34:05 +09:00
<input type="submit" value="Submit" />
</div>
</form>
{{/with}}
</div>
</template>