funky-framadate-front/src/app/pages/voting/voting-navigation/voting-navigation.component...

32 lines
917 B
HTML
Raw Normal View History

<nav id="navigation">
<nav class="sections-nav">
<ul>
<li>
<a href="#title">
{{ config.currentPoll.poll.title }}
</a>
</li>
<li>
<a href="#table">
{{ config.currentPoll.stacks.length }}
2020-02-05 10:54:30 +01:00
votes
</a>
</li>
<li>
<a href="#graph">
2020-02-05 10:54:30 +01:00
Graphique
</a>
</li>
<li>
<a href="#comments">
<i class="fa fa-comments"></i>
<span *ngIf="config.currentPoll && config.currentPoll.comments" class="comments-count">
{{ config.currentPoll.comments.length }}
</span>
2020-02-05 10:54:30 +01:00
commentaires
</a>
</li>
</ul>
</nav>
2020-02-05 10:54:30 +01:00
</nav>