funky-framadate-front/mocks/old-stuff/pages/voting/voting-navigation/voting-navigation.component...

32 lines
611 B
HTML
Raw Normal View History

<nav id="navigation">
2020-04-21 10:50:26 +02:00
<nav class="sections-nav">
<ul>
<li>
2020-05-01 19:10:17 +02:00
<a href="title">
2020-05-12 19:16:23 +02:00
{{ config.currentPoll.poll.question }}
2020-04-21 10:50:26 +02:00
</a>
</li>
<li>
2020-05-01 19:10:17 +02:00
<a href="table">
2020-04-21 10:50:26 +02:00
{{ config.currentPoll.stacks.length }}
votes
</a>
</li>
<li>
2020-05-01 19:10:17 +02:00
<a href="graph">
2020-04-21 10:50:26 +02:00
Graphique
</a>
</li>
<li>
2020-05-01 19:10:17 +02:00
<a href="comments">
2020-05-12 19:16:23 +02:00
<i class="fa fa-comments" aria-hidden="true"></i>
2020-04-21 10:50:26 +02:00
<span *ngIf="config.currentPoll && config.currentPoll.comments" class="comments-count">
{{ config.currentPoll.comments.length }}
</span>
commentaires
</a>
</li>
</ul>
</nav>
2020-02-05 10:54:30 +01:00
</nav>