mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00

* {{currentUser.isAdmin}} instead of custom helpers. * drop currentUserIsAdmin session variable. relies on fix to meteor's handlebars evaluator in 0.4.2.
14 lines
391 B
HTML
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>
|