2014-12-18 12:47:51 +01:00
{ $admin = $admin | default : false }
2014-12-18 13:08:30 +01:00
{ if $admin } <form action=" { $admin_poll_id | poll_url : true } " method="POST"> { /if }
2014-12-18 12:47:51 +01:00
<div class="jumbotron { if $admin } bg-danger { /if } ">
<div class="row">
2014-12-18 13:08:30 +01:00
<div id="title-form" class="col-md-7">
2015-03-22 23:33:03 +01:00
<h3> { $poll - > title | html } { if $admin & & ! $expired } <button class="btn btn-link btn-sm btn-edit" title=" { __ ( 'PollInfo\\Edit the title' ) } "><span class="glyphicon glyphicon-pencil"></span><span class="sr-only"> { __ ( 'Generic\\Edit' ) } </span></button> { /if } </h3>
2015-02-28 19:18:59 +01:00
{ if $admin & & ! $expired }
2014-12-18 12:47:51 +01:00
<div class="hidden js-title">
2015-03-22 23:33:03 +01:00
<label class="sr-only" for="newtitle"> { __ ( 'PollInfo\\Title' ) } </label>
2014-12-18 12:47:51 +01:00
<div class="input-group">
2015-01-11 14:59:25 +01:00
<input type="text" class="form-control" id="newtitle" name="title" size="40" value=" { $poll - > title | html } " />
2014-12-18 12:47:51 +01:00
<span class="input-group-btn">
2015-03-22 23:33:03 +01:00
<button type="submit" class="btn btn-success" name="update_poll_info" value="title" title=" { __ ( 'PollInfo\\Save the new title' ) } "><span class="glyphicon glyphicon-ok"></span><span class="sr-only"> { __ ( 'Generic\\Save' ) } </span></button>
<button class="btn btn-link btn-cancel" title=" { __ ( 'PollInfo\\Cancel the title edit' ) } "><span class="glyphicon glyphicon-remove"></span><span class="sr-only"> { __ ( 'Generic\\Cancel' ) } </span></button>
2014-12-18 12:47:51 +01:00
</span>
</div>
</div>
2014-12-17 23:43:06 +01:00
{ /if }
2014-12-17 23:12:05 +01:00
</div>
2015-01-04 02:00:02 +01:00
<div class="col-md-5 hidden-print">
2014-12-18 12:47:51 +01:00
<div class="btn-group pull-right">
2015-03-22 23:33:03 +01:00
<button onclick="print(); return false;" class="btn btn-default"><span class="glyphicon glyphicon-print"></span> { __ ( 'PollInfo\\Print' ) } </button>
<a href=" { $SERVER_URL | html } exportcsv.php?poll= { $poll_id | html } " class="btn btn-default"><span class="glyphicon glyphicon-download-alt"></span> { __ ( 'PollInfo\\Export to CSV' ) } </a>
2015-02-28 19:18:59 +01:00
{ if $admin & & ! $expired }
2014-12-18 12:47:51 +01:00
<button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown">
2015-03-22 23:33:03 +01:00
<span class="glyphicon glyphicon-trash"></span> <span class="sr-only"> { __ ( 'Generic\\Remove' ) } </span> <span class="caret"></span>
2014-12-18 12:47:51 +01:00
</button>
<ul class="dropdown-menu" role="menu">
2015-03-22 23:33:03 +01:00
<li><button class="btn btn-link" type="submit" name="remove_all_votes"> { __ ( 'PollInfo\\Remove all the votes' ) } </button></li>
<li><button class="btn btn-link" type="submit" name="remove_all_comments"> { __ ( 'PollInfo\\Remove all the comments' ) } </button></li>
2014-12-18 12:47:51 +01:00
<li class="divider" role="presentation"></li>
2015-03-22 23:33:03 +01:00
<li><button class="btn btn-link" type="submit" name="delete_poll"> { __ ( 'PollInfo\\Remove the poll' ) } </button></li>
2014-12-18 12:47:51 +01:00
</ul>
{ /if }
</div>
2014-12-17 23:12:05 +01:00
</div>
2014-12-17 23:43:06 +01:00
</div>
2015-01-08 22:03:44 +01:00
<div class="row">
<div id="name-form" class="form-group col-md-5">
2015-03-22 23:33:03 +01:00
<h4 class="control-label"> { __ ( 'PollInfo\\Initiator of the poll' ) } </h4>
<p class="form-control-static"> { $poll - > admin_name | html } { if $admin & & ! $expired } <button class="btn btn-link btn-sm btn-edit" title=" { __ ( 'PollInfo\\Edit the name' ) } "><span class="glyphicon glyphicon-pencil"></span><span class="sr-only"> { __ ( 'Generic\\Edit' ) } </span></button> { /if } </p>
2015-02-28 19:18:59 +01:00
{ if $admin & & ! $expired }
2015-01-08 22:03:44 +01:00
<div class="hidden js-name">
2015-03-22 23:33:03 +01:00
<label class="sr-only" for="newname"> { __ ( 'PollInfo\\Initiator of the poll' ) } </label>
2015-01-08 22:03:44 +01:00
<div class="input-group">
2015-01-11 14:59:25 +01:00
<input type="text" class="form-control" id="newname" name="name" size="40" value=" { $poll - > admin_name | html } " />
2015-01-08 22:03:44 +01:00
<span class="input-group-btn">
2015-03-22 23:33:03 +01:00
<button type="submit" class="btn btn-success" name="update_poll_info" value="name" title=" { __ ( 'PollInfo\\Save the new name' ) } "><span class="glyphicon glyphicon-ok"></span><span class="sr-only"> { __ ( 'Generic\\Save' ) } </span></button>
<button class="btn btn-link btn-cancel" title=" { __ ( 'PollInfo\\Cancel the name edit' ) } "><span class="glyphicon glyphicon-remove"></span><span class="sr-only"> { __ ( 'Generic\\Cancel' ) } </span></button>
2015-01-08 22:03:44 +01:00
</span>
</div>
</div>
2015-02-28 19:18:59 +01:00
{ /if }
2015-01-08 22:03:44 +01:00
</div>
</div>
2014-12-18 12:47:51 +01:00
<div class="row">
2015-02-28 19:18:59 +01:00
{ if $admin }
2014-12-17 23:43:06 +01:00
<div class="form-group col-md-5">
2015-01-11 14:59:25 +01:00
<div id="email-form">
2015-03-22 23:33:03 +01:00
<p> { $poll - > admin_mail | html } { if ! $expired } <button class="btn btn-link btn-sm btn-edit" title=" { __ ( 'PollInfo\\Edit the email adress' ) } "><span class="glyphicon glyphicon-pencil"></span><span class="sr-only"> { __ ( 'Generic\\Edit' ) } </span></button> { /if } </p>
2015-02-28 19:18:59 +01:00
{ if ! $expired }
2015-01-11 14:59:25 +01:00
<div class="hidden js-email">
2015-03-22 23:33:03 +01:00
<label class="sr-only" for="admin_mail"> { __ ( 'PollInfo\\Email' ) } </label>
2015-01-11 14:59:25 +01:00
<div class="input-group">
<input type="text" class="form-control" id="admin_mail" name="admin_mail" size="40" value=" { $poll - > admin_mail | html } " />
<span class="input-group-btn">
2015-03-22 23:33:03 +01:00
<button type="submit" name="update_poll_info" value="admin_mail" class="btn btn-success" title=" { __ ( 'PollInfo\\Save the email address' ) } "><span class="glyphicon glyphicon-ok"></span><span class="sr-only"> { __ ( 'Generic\\Save' ) } </span></button>
<button class="btn btn-link btn-cancel" title=" { __ ( 'PollInfo\\Cancel the email address edit' ) } "><span class="glyphicon glyphicon-remove"></span><span class="sr-only"> { __ ( 'Generic\\Cancel' ) } </span></button>
2015-01-11 14:59:25 +01:00
</span>
2014-12-18 13:08:30 +01:00
</div>
</div>
2015-02-28 19:18:59 +01:00
{ /if }
2015-01-11 14:59:25 +01:00
</div>
2014-12-17 23:43:06 +01:00
</div>
2014-12-18 12:47:51 +01:00
{ /if }
2015-02-28 19:18:59 +01:00
<div class="form-group col-md-7" id="description-form">
2015-03-22 23:33:03 +01:00
<h4 class="control-label"> { __ ( 'Generic\\Description' ) } { if $admin & & ! $expired } <button class="btn btn-link btn-sm btn-edit" title=" { __ ( 'PollInfo\\Edit the description' ) } "><span class="glyphicon glyphicon-pencil"></span><span class="sr-only"> { __ ( 'Generic\\Edit' ) } </span></button> { /if } </h4>
2015-02-28 19:18:59 +01:00
<p class="form-control-static well"> { $poll - > description | html } </p>
{ if $admin & & ! $expired }
<div class="hidden js-desc text-right">
2015-03-22 23:33:03 +01:00
<label class="sr-only" for="newdescription"> { __ ( 'Generic\\Description' ) } </label>
2015-03-18 00:46:19 +01:00
<textarea class="form-control" id="newdescription" name="description" rows="2" cols="40"> { $poll - > description | html } </textarea>
2015-03-22 23:33:03 +01:00
<button type="submit" id="btn-new-desc" name="update_poll_info" value="description" class="btn btn-sm btn-success" title=" { __ ( 'PollInfo\\Save the description' ) } "><span class="glyphicon glyphicon-ok"></span><span class="sr-only"> { __ ( 'Generic\\Save' ) } </span></button>
<button class="btn btn-default btn-sm btn-cancel" title=" { __ ( 'PollInfo\\Cancel the description edit' ) } "><span class="glyphicon glyphicon-remove"></span><span class="sr-only"> { __ ( 'Generic\\Cancel' ) } </span></button>
2015-02-28 19:18:59 +01:00
</div>
{ /if }
</div>
2014-12-18 12:47:51 +01:00
</div>
<div class="row">
2015-01-08 00:27:40 +01:00
<div class="form-group form-group { if $admin } col-md-4 { else } col-md-6 { /if } ">
2015-03-22 23:33:03 +01:00
<label for="public-link"><a class="public-link" href=" { $poll_id | poll_url | html } "> { __ ( 'PollInfo\\Public link of the poll' ) } <span class="btn-link glyphicon glyphicon-link"></span></a></label>
2014-12-18 12:47:51 +01:00
<input class="form-control" id="public-link" type="text" readonly="readonly" value=" { $poll_id | poll_url } " />
2014-12-17 23:43:06 +01:00
</div>
2014-12-18 12:47:51 +01:00
{ if $admin }
2015-01-08 00:27:40 +01:00
<div class="form-group col-md-4">
2015-03-22 23:33:03 +01:00
<label for="admin-link"><a class="admin-link" href=" { $admin_poll_id | poll_url : true | html } "> { __ ( 'PollInfo\\Admin link of the poll' ) } <span class="btn-link glyphicon glyphicon-link"></span></a></label>
2015-01-11 14:59:25 +01:00
<input class="form-control" id="admin-link" type="text" readonly="readonly" value=" { $admin_poll_id | poll_url : true | html } " />
2014-12-18 12:47:51 +01:00
</div>
2015-01-08 00:27:40 +01:00
<div id="expiration-form" class="form-group col-md-4">
2015-03-22 23:33:03 +01:00
<h4 class="control-label"> { __ ( 'PollInfo\\Expiration\'s date' ) } </h4>
<p> { $poll - > end_date | date_format : $date_format [ 'txt_date' ] | html } { if ! $expired } <button class="btn btn-link btn-sm btn-edit" title=" { __ ( 'PollInfo\\Edit the expiration\'s date' ) } "><span class="glyphicon glyphicon-pencil"></span><span class="sr-only"> { __ ( 'Generic\\Edit' ) } </span></button> { /if } </p>
2015-02-28 19:18:59 +01:00
{ if ! $expired }
2015-01-08 00:27:40 +01:00
<div class="hidden js-expiration">
2015-03-22 23:33:03 +01:00
<label class="sr-only" for="newexpirationdate"> { __ ( 'PollInfo\\Expiration\'s date' ) } </label>
2015-01-08 00:27:40 +01:00
<div class="input-group">
2015-01-11 14:59:25 +01:00
<input type="text" class="form-control" id="newexpirationdate" name="expiration_date" size="40" value=" { $poll - > end_date | date_format : $date_format [ 'txt_date' ] | html } " />
2015-01-08 00:27:40 +01:00
<span class="input-group-btn">
2015-03-22 23:33:03 +01:00
<button type="submit" class="btn btn-success" name="update_poll_info" value="expiration_date" title=" { __ ( 'PollInfo\\Save the new expiration date' ) } "><span class="glyphicon glyphicon-ok"></span><span class="sr-only"> { __ ( 'Generic\\Save' ) } </span></button>
<button class="btn btn-link btn-cancel" title=" { __ ( 'PollInfo\\Cancel the expiration date edit' ) } "><span class="glyphicon glyphicon-remove"></span><span class="sr-only"> { __ ( 'Generic\\Cancel' ) } </span></button>
2015-01-08 00:27:40 +01:00
</span>
</div>
</div>
{ /if }
2014-12-18 12:47:51 +01:00
</div>
{ /if }
</div>
2014-12-18 23:57:00 +01:00
{ if $admin }
2014-12-18 13:23:47 +01:00
<div class="row">
2015-01-08 00:27:40 +01:00
<div class="col-md-4 col-md-offset-8" >
2014-12-18 13:23:47 +01:00
<div id="poll-rules-form">
{ if $poll - > active }
{ if $poll - > editable }
{ $rule_id = 2 }
{ $rule_icon = '<span class="glyphicon glyphicon-edit"></span>' }
2015-03-22 23:33:03 +01:00
{ $rule_txt = __ ( 'PollInfo\\Votes are editable' ) }
2014-12-18 13:23:47 +01:00
{ else }
{ $rule_id = 1 }
{ $rule_icon = '<span class="glyphicon glyphicon-check"></span>' }
2015-03-22 23:33:03 +01:00
{ $rule_txt = __ ( 'PollInfo\\Votes and comments are open' ) }
2014-12-18 13:23:47 +01:00
{ /if }
{ else }
{ $rule_id = 0 }
{ $rule_icon = '<span class="glyphicon glyphicon-lock"></span>' }
2015-03-22 23:33:03 +01:00
{ $rule_txt = __ ( 'PollInfo\\Votes and comments are locked' ) }
2014-12-18 13:23:47 +01:00
{ /if }
2015-03-22 23:33:03 +01:00
<p class=""> { $rule_icon } { $rule_txt | html } { if ! $expired } <button class="btn btn-link btn-sm btn-edit" title=" { __ ( 'PollInfo\\Edit the poll rules' ) } "><span class="glyphicon glyphicon-pencil"></span><span class="sr-only"> { __ ( 'Generic\\Edit' ) } </span></button> { /if } </p>
2015-02-28 19:18:59 +01:00
{ if ! $expired }
2014-12-18 13:23:47 +01:00
<div class="hidden js-poll-rules">
2015-03-22 23:33:03 +01:00
<label class="sr-only" for="rules"> { __ ( 'PollInfo\\Poll rules' ) } </label>
2014-12-18 13:23:47 +01:00
<div class="input-group">
<select class="form-control" id="rules" name="rules">
2015-03-22 23:33:03 +01:00
<option value="0" { if $rule_id = = 0 } selected="selected" { /if } > { __ ( 'PollInfo\\Votes and comments are locked' ) } </option>
<option value="1" { if $rule_id = = 1 } selected="selected" { /if } > { __ ( 'PollInfo\\Votes and comments are open' ) } </option>
<option value="2" { if $rule_id = = 2 } selected="selected" { /if } > { __ ( 'PollInfo\\Votes are editable' ) } </option>
2014-12-18 13:23:47 +01:00
</select>
<span class="input-group-btn">
2015-03-22 23:33:03 +01:00
<button type="submit" name="update_poll_info" value="rules" class="btn btn-success" title=" { __ ( 'PollInfo\\Save the new rules' ) } "><span class="glyphicon glyphicon-ok"></span><span class="sr-only"> { __ ( 'Generic\\Save' ) } </span></button>
<button class="btn btn-link btn-cancel" title=" { __ ( 'PollInfo\\Cancel the rules edit' ) } "><span class="glyphicon glyphicon-remove"></span><span class="sr-only"> { __ ( 'Generic\\Cancel' ) } </span></button>
2014-12-18 13:23:47 +01:00
</span>
</div>
</div>
2015-02-28 19:18:59 +01:00
{ /if }
2014-12-18 13:23:47 +01:00
</div>
</div>
</div>
{ /if }
2014-12-17 23:43:06 +01:00
</div>
2014-12-18 13:08:30 +01:00
{ if $admin } </form> { /if }