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

32 lines
598 B
HTML

<nav id="navigation">
<nav class="sections-nav">
<ul>
<li>
<a href="title">
{{ config.currentPoll.poll.question.label }}
</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"></i>
<span *ngIf="config.currentPoll && config.currentPoll.comments" class="comments-count">
{{ config.currentPoll.comments.length }}
</span>
commentaires
</a>
</li>
</ul>
</nav>
</nav>