Vulcan/client/templates/comment_form.html
Matt DeBergalis e07daec6f3 Use currentUser builtin to simplify templates.
* {{currentUser.isAdmin}} instead of custom helpers.
* drop currentUserIsAdmin session variable.

relies on fix to meteor's handlebars evaluator in 0.4.2.
2012-09-27 23:33:08 -07:00

14 lines
391 B
HTML

<template name="comment_form">
<div class="comment-new">
<form>
{{#constant}}
<div class="comment-field" id="editor">
<textarea id="comment" rows="3" autofocus="autofocus"></textarea>
</div>
{{/constant}}
<div class="comment-submit">
<input type="submit" class="button" value="Add Comment" />
</div>
</form>
</div>
</template>