7d7f39190f
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
34 lines
1.6 KiB
Smarty
34 lines
1.6 KiB
Smarty
<hr role="presentation" id="comments" class="hidden-print"/>
|
|
|
|
{* Comment list *}
|
|
{include 'part/comments_list.tpl'}
|
|
|
|
{* Add comment form *}
|
|
{if $active && !$expired && $accessGranted}
|
|
<form action="{'action/add_comment.php'|resource}" method="POST" id="comment_form">
|
|
|
|
<input type="hidden" name="poll" value="{$poll_id}"/>
|
|
{if !empty($admin_poll_id)}
|
|
<input type="hidden" name="poll_admin" value="{$admin_poll_id}"/>
|
|
{/if}
|
|
<div class="hidden-print jumbotron">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<fieldset id="add-comment"><legend>{__('Comments', 'Add a comment to the poll')}</legend>
|
|
<div class="form-group">
|
|
<label for="comment_name" class="control-label">{__('Generic', 'Your name')}</label>
|
|
<input type="text" name="name" id="comment_name" class="form-control" maxlength="60" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="comment" class="control-label">{__('Comments', 'Your comment')}</label>
|
|
<textarea name="comment" id="comment" class="form-control" rows="2" cols="40"></textarea>
|
|
</div>
|
|
<div class="pull-right">
|
|
<input type="submit" id="add_comment" name="add_comment" value="{__('Comments', 'Send the comment')}" class="btn btn-success">
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</form>
|
|
{/if}
|