-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0f0cb8
commit 48639a5
Showing
38 changed files
with
55 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.DAL/obj/Debug/net8.0/ref/Festival.DAL.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.DAL/obj/Debug/net8.0/refint/Festival.DAL.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,45 @@ | ||
@page "/" | ||
@using Festival.DAL.Models; | ||
@using System.ComponentModel.DataAnnotations; | ||
|
||
<PageTitle>Home</PageTitle> | ||
<h1>Home</h1> | ||
|
||
<h1>Hello, world!</h1> | ||
<p>Welcome to the Festival App!</p> | ||
|
||
Welcome to your new app. | ||
<h2>Artists</h2> | ||
|
||
<ul> | ||
@foreach (var artist in Artists) | ||
{ | ||
<li>@artist.Name</li> | ||
} | ||
</ul> | ||
|
||
<h2>Events</h2> | ||
|
||
<ul> | ||
@foreach (var even in Events) | ||
{ | ||
<li>@even.EventName - @even.EventDate</li> | ||
} | ||
</ul> | ||
|
||
<h2>Tickets</h2> | ||
|
||
<ul> | ||
@foreach (var ticket in Tickets) | ||
{ | ||
<li>@ticket.EventId - Price: $@ticket.Price</li> | ||
} | ||
</ul> | ||
|
||
@code { | ||
private List<Artist> Artists { get; set; } = new List<Artist>(); | ||
private List<Event> Events { get; set; } = new List<Event>(); | ||
private List<Ticket> Tickets { get; set; } = new List<Ticket>(); | ||
|
||
protected override async Task OnInitializedAsync() | ||
{ | ||
|
||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+8 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.DAL.pdb
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.DAL.pdb.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.DAL.wasm
Binary file not shown.
Binary file modified
BIN
+12 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.DAL.wasm.gz
Binary file not shown.
Binary file modified
BIN
+988 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.PL.pdb
Binary file not shown.
Binary file modified
BIN
+712 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.PL.pdb.gz
Binary file not shown.
Binary file modified
BIN
+2.5 KB
(110%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.PL.wasm
Binary file not shown.
Binary file modified
BIN
+958 Bytes
(110%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/Festival.PL.wasm.gz
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+4 Bytes
(100%)
Festival/Festival.PL/bin/Debug/net8.0/wwwroot/_framework/blazor.boot.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/Festival.PL.csproj.AssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+12 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/compressed/a9jd1qftwr.gz
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/compressed/fveyapdap7.gz
Binary file not shown.
Binary file modified
BIN
+712 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/compressed/g5kifqoip1.gz
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/compressed/mkhyi5sui5.gz
Binary file not shown.
Binary file modified
BIN
+958 Bytes
(110%)
Festival/Festival.PL/obj/Debug/net8.0/compressed/z55ykdkz41.gz
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/refint/Festival.PL.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/tmp-webcil/Festival.DAL.wasm
Binary file not shown.
Binary file modified
BIN
+2.5 KB
(110%)
Festival/Festival.PL/obj/Debug/net8.0/tmp-webcil/Festival.PL.wasm
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Festival/Festival.PL/obj/Debug/net8.0/webcil/Festival.DAL.wasm
Binary file not shown.
Binary file modified
BIN
+2.5 KB
(110%)
Festival/Festival.PL/obj/Debug/net8.0/webcil/Festival.PL.wasm
Binary file not shown.