Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
voting.typo3.org
extensions
election
Commits
1a0e9d8e
Commit
1a0e9d8e
authored
Feb 12, 2019
by
Christoph Pascher
Browse files
FE basic template for results
parent
6be5cf94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Resources/Private/Language/locallang.xlf
View file @
1a0e9d8e
...
...
@@ -472,6 +472,18 @@
<trans-unit
id=
"view.fe.election.vote.vote"
>
<source>
Vote
</source>
</trans-unit>
<trans-unit
id=
"view.fe.election.show.result"
>
<source>
Voting Results
</source>
</trans-unit>
<trans-unit
id=
"view.fe.election.show.active"
>
<source>
Voting in Progress
</source>
</trans-unit>
<trans-unit
id=
"view.fe.election.show.nominee"
>
<source>
Nominee
</source>
</trans-unit>
<trans-unit
id=
"view.fe.election.show.votes"
>
<source>
Votes
</source>
</trans-unit>
<!-- FE ELECTION VOTING VALIDATION-->
...
...
Resources/Private/Templates/FeElection/Show.html
View file @
1a0e9d8e
...
...
@@ -4,12 +4,41 @@
<h1>
{election.title}
</h1>
<f:if
condition=
"{election.ElectionFinished}"
>
<f:then>
<h2>
Result
</h2>
</f:then>
<f:else>
active
</f:else>
</f:if>
<div>
{election.description}
</div>
<h2><f:translate
key=
"view.fe.election.show.result"
/></h2>
<table
class=
"table table-hover"
>
<thead>
<tr>
<th>
<f:translate
key=
"view.fe.election.show.nominee"
/>
</th>
<th>
<f:translate
key=
"view.fe.election.show.votes"
/>
</th>
</tr>
</thead>
<tbody>
<f:for
each=
"{results}"
as=
"result"
>
<tr>
<td>
{result.nominee.lastName}, {result.nominee.firstName} {result.nominee.MiddleName}
</td>
<td>
<f:if
condition=
"{election.ElectionFinished}"
>
<f:then>
<f:if
condition=
"{result.relativevotes}"
>
{result.relativevotes}% ({result.votes}
<f:translate
key=
"view.fe.election.show.votes"
/>
)
</f:if>
</f:then>
<f:else>
<f:translate
key=
"view.fe.election.show.active"
/>
</f:else>
</f:if>
</td>
</tr>
</f:for>
</tbody>
</table>
</f:section>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment