diff --git a/frontend/normal_user/_main page/pojedynczy_turniej/app.js b/frontend/normal_user/_main page/pojedynczy_turniej/app.js index 55ef099..93e53a4 100644 --- a/frontend/normal_user/_main page/pojedynczy_turniej/app.js +++ b/frontend/normal_user/_main page/pojedynczy_turniej/app.js @@ -10,25 +10,47 @@ async function showTournaments() { } } +function loginVisibility() { + if (localStorage.getItem("token") !== null) { + document.getElementById("login").style.display = "none"; + } + else { + document.getElementById("login").style.display = ""; + + } +} + async function renderTournaments() { let tournaments = await showTournaments(); let html = ''; let htmlDate = ''; tournaments.forEach(tournament => { + let rank = 0 + if (`${tournament.approved}` == 0) { + rank = "Nie" + } + else if (`${tournament.approved}` == 1) { + rank = "Tak, ale niezatwierdzony" + } + else { + rank = "Tak" + } + + if (`${tournament.id}` == localStorage.getItem("tournamentId")) { console.log(`${tournament.rang}`) htmlDate = `

${tournament.name}

-

${tournament.places}
+

Miejsc: ${tournament.places}
${tournament.from} do ${tournament.to}

` let htmlSegment = `

${tournament.name}

-

${tournament.places}

+

Miejsca: ${tournament.places}

Wpisowe:

${tournament.entryFee} @@ -43,7 +65,7 @@ async function renderTournaments() { ${tournament.to}

Czy rankingowy:

- ${tournament.rang} + ${rank}

Dyrektor turnieju:

${tournament.director} diff --git a/frontend/normal_user/_main page/pojedynczy_turniej/drabinka/index.html b/frontend/normal_user/_main page/pojedynczy_turniej/drabinka/index.html index db15902..7b7a021 100644 --- a/frontend/normal_user/_main page/pojedynczy_turniej/drabinka/index.html +++ b/frontend/normal_user/_main page/pojedynczy_turniej/drabinka/index.html @@ -15,11 +15,13 @@
- +