forked from tykayn/funky-framadate-front
32 lines
611 B
HTML
32 lines
611 B
HTML
<nav id="navigation">
|
|
<nav class="sections-nav">
|
|
<ul>
|
|
<li>
|
|
<a href="title">
|
|
{{ config.currentPoll.poll.question }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="table">
|
|
{{ config.currentPoll.stacks.length }}
|
|
votes
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="graph">
|
|
Graphique
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="comments">
|
|
<i class="fa fa-comments" aria-hidden="true"></i>
|
|
<span *ngIf="config.currentPoll && config.currentPoll.comments" class="comments-count">
|
|
{{ config.currentPoll.comments.length }}
|
|
</span>
|
|
commentaires
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</nav>
|