Nu går det fint att skapa tournaments med teams och prizes

This commit is contained in:
2020-05-06 22:58:06 +02:00
parent 9596d9aa47
commit dc4162db95
12 changed files with 228 additions and 35 deletions

View File

@ -6,35 +6,35 @@
<div class="row">
<div class="col-md-8">
<div class="jumbotron">
<h1>Office Fun!</h1>
<p class="lead">Track your in office tournament easily and have a great time doing it.</p>
<p><a href="https://asp.net" class="btn btn-primary btn-lg">Create a tournament</a></p>
<div class="row">
<div class="col-md-8">
<div class="jumbotron">
<h1>Office Fun!</h1>
<p class="lead">Track your in office tournament easily and have a great time doing it.</p>
<p>@Html.ActionLink("Create a Tournament", "Create", "Tournaments", new { area = "" }, new { @class = "btn btn-primary btn-lg" })</p>
</div>
<div class="row">
<div class="col-md-6">
<h2>Play with friends</h2>
<p>
Get a team and get started today on a new tournament.
</p>
</div>
<div class="row">
<div class="col-md-6">
<h2>Play with friends</h2>
<p>
Get a team and get started today on a new tournament.
</p>
</div>
<div class="col-md-6">
<h2>Win prizes</h2>
<p>Set up a tournament with prizes for first and second place and compete to win.</p>
</div>
<div class="col-md-6">
<h2>Win prizes</h2>
<p>Set up a tournament with prizes for first and second place and compete to win.</p>
</div>
</div>
<div class="col-md-4">
<h2>Current Tournament</h2>
<ul class="list-unstyled tourney-display">
@foreach (var item in Model)
{
<li><a href="/">@item.TournamentName</a></li>
}
</div>
<div class="col-md-4">
<h2>Current Tournament</h2>
<ul class="list-unstyled tourney-display">
@foreach (var item in Model)
{
<li><a href="/">@item.TournamentName</a></li>
}
</ul>
</div>
</ul>
</div>
</div>
</div>