mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
16 lines
No EOL
547 B
HTML
16 lines
No EOL
547 B
HTML
<template name="comment_edit">
|
|
<div class="grid submit">
|
|
{{#with comment}}
|
|
<form class="grid-block form-horizontal">
|
|
<div class="control-group">
|
|
<label class="control-label">Comment</label>
|
|
<div class="controls"><textarea id="body" value="" class="input-xlarge">{{body}}</textarea></div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<a class="delete-link" href="/comments/deleted">Delete Comment</a>
|
|
<input type="submit" value="Submit" />
|
|
</div>
|
|
</form>
|
|
{{/with}}
|
|
</div>
|
|
</template> |