2020-02-05 10:54:30 +01:00
|
|
|
<div
|
|
|
|
class="poll"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class='loading'
|
|
|
|
*ngIf='config.loading' >
|
|
|
|
<i class='fa fa-refresh fa-spin' ></i >
|
2020-01-29 17:30:39 +01:00
|
|
|
</div >
|
2020-02-05 10:54:30 +01:00
|
|
|
<div
|
|
|
|
class='loaded-poll'
|
|
|
|
*ngIf='!config.loading && config.currentPoll' >
|
|
|
|
<div id='table' >
|
|
|
|
<!-- <framadate-voting-navigation ></framadate-voting-navigation >-->
|
|
|
|
<framadate-voting-summary ></framadate-voting-summary >
|
|
|
|
</div >
|
2020-01-22 10:00:03 +01:00
|
|
|
|
2020-02-05 10:54:30 +01:00
|
|
|
<div id='poll_comments' >
|
|
|
|
<framadate-comments-list ></framadate-comments-list >
|
|
|
|
</div >
|
|
|
|
<div id='choices' >
|
2020-01-22 10:00:03 +01:00
|
|
|
|
2020-02-05 10:54:30 +01:00
|
|
|
<framadate-choices-list ></framadate-choices-list >
|
|
|
|
</div >
|
2020-01-29 17:30:39 +01:00
|
|
|
|
2020-02-05 10:54:30 +01:00
|
|
|
<div id='graph' >
|
|
|
|
<!--<framadate-voting-graph ></framadate-voting-graph >-->
|
|
|
|
</div >
|
|
|
|
<div id='export_and_share' >
|
2020-01-22 10:00:03 +01:00
|
|
|
|
2020-02-05 10:54:30 +01:00
|
|
|
<div
|
|
|
|
class="sharing"
|
|
|
|
*ngIf='config.currentPoll' >
|
|
|
|
<h3 class="margin-top-x8" >Partager le sondage
|
2020-01-29 17:30:39 +01:00
|
|
|
|
2020-02-05 10:54:30 +01:00
|
|
|
<i class='fa fa-share' ></i ></h3 >
|
|
|
|
<p
|
|
|
|
class="nobold text-14"
|
|
|
|
for="copyLink" >Pour partager le sondage, vous pouvez diffuser ce lien :
|
|
|
|
<a href='{{config.currentPoll.urlPublic}}' >
|
|
|
|
{{config.currentPoll.urlPublic}}
|
|
|
|
</a >
|
|
|
|
</p >
|
|
|
|
|
|
|
|
<framadate-copy-text [textToCopy]='config.currentPoll.urlPublic' ></framadate-copy-text >
|
|
|
|
<h3 class="margin-top-x6 margin-btm-x3" >
|
|
|
|
Exporter/Imprimer
|
|
|
|
</h3 >
|
|
|
|
<input
|
|
|
|
type="submit"
|
|
|
|
name="export"
|
|
|
|
class="margin-btm-x3 btn btn--primary btn--outline"
|
|
|
|
value="Exporter en .csv"
|
|
|
|
(click)="config.exportCSV()" >
|
|
|
|
<input
|
|
|
|
type="submit"
|
|
|
|
name="copy-link"
|
|
|
|
class="btn btn--primary btn--outline"
|
|
|
|
value="Imprimer le sondage"
|
|
|
|
(click)="config.print()" >
|
|
|
|
</div >
|
|
|
|
|
|
|
|
</div >
|
2020-01-16 15:35:11 +01:00
|
|
|
</div >
|
2020-01-24 12:11:28 +01:00
|
|
|
<div
|
2020-02-05 10:54:30 +01:00
|
|
|
class='badly-loaded'
|
|
|
|
*ngIf='config.loading && !config.currentPoll' >
|
|
|
|
<div class='well is-warning' >
|
2020-01-24 12:11:28 +01:00
|
|
|
|
2020-02-05 10:54:30 +01:00
|
|
|
No current poll available
|
|
|
|
</div >
|
2020-01-24 12:11:28 +01:00
|
|
|
</div >
|
2020-02-04 11:35:29 +01:00
|
|
|
|
2020-01-16 15:35:11 +01:00
|
|
|
</div >
|