diff --git a/pages/tournament.js b/pages/tournament.js
index 8cf898c..bd20953 100644
--- a/pages/tournament.js
+++ b/pages/tournament.js
@@ -24,7 +24,7 @@ class PrivateTournamentPage extends React.Component {
// TODO: Change href-prop of the anchor tag to contain the tournament code
return (
-
+
{description}
@@ -50,6 +50,16 @@ function mapStateToTournamentPageProperties(state) {
const TournamentPage = connect(mapStateToTournamentPageProperties)(PrivateTournamentPage);
+function ButtonsBadge(props) {
+ const { id, ownerName, isSignedIn, username } = props;
+ return (
+
+
+
+
+ );
+}
+
function EditButton(props) {
const {id, ownerName, isSignedIn, username} = props;
@@ -60,6 +70,11 @@ function EditButton(props) {
}
}
+function StatisticsButton(props) {
+ const { id } = props;
+ return Statistiken zum Turnier;
+}
+
function getLevelName(levelNumber) {
const names = ['Finale', 'Halbfinale', 'Viertelfinale', 'Achtelfinale'];
if (levelNumber < names.length) {