voting, majority & passed clarified (closes #82)

This commit is contained in:
Jul Gvoz 2021-01-04 19:00:24 +02:00
parent 5bccde5943
commit 2717b69ea2
1 changed files with 9 additions and 3 deletions

View File

@ -18,8 +18,9 @@
<td>Nominator</td>
<td>Nominee</td>
<td>Type</td>
<td>Majority</td>
<td>Votes</td>
<td><font-awesome-icon icon="hand-paper" /> Hand up</td>
<td>Passed</td>
</tr>
</thead>
<tbody>
@ -27,12 +28,14 @@
<td>{{ vote.nominator }}</td>
<td>{{ vote.nominee }}</td>
<td>{{ vote.type }}</td>
<td>{{ vote.majority }}</td>
<td><strong>{{ vote.votes.length }}</strong> / {{ vote.majority }}</td>
<td>
{{ vote.votes.length }}
<font-awesome-icon icon="user-friends" />
{{ vote.votes.join(", ") }}
</td>
<td>
<font-awesome-icon icon="check-square" v-if="vote.votes.length >= vote.majority" />
</td>
</tr>
</tbody>
</table>
@ -98,5 +101,8 @@ tbody {
td:nth-child(4) {
text-align: center;
}
td:nth-child(6) {
text-align: center;
}
}
</style>