diff --git a/pointMaster/Views/Home/AccessDenied.cshtml b/pointMaster/Views/Home/AccessDenied.cshtml index 906b138..e62acac 100644 --- a/pointMaster/Views/Home/AccessDenied.cshtml +++ b/pointMaster/Views/Home/AccessDenied.cshtml @@ -1,3 +1,6 @@ -
+@{ + ViewData["Title"] = "Access denied..."; +} +

Hovsa du, det har du vidst ikke helt rettigheder til ;)

\ No newline at end of file diff --git a/pointMaster/Views/Home/Index.cshtml b/pointMaster/Views/Home/Index.cshtml index 3a264b7..9d76c0a 100644 --- a/pointMaster/Views/Home/Index.cshtml +++ b/pointMaster/Views/Home/Index.cshtml @@ -1,6 +1,6 @@ @model pointMaster.Controllers.HomePageViewModel @{ - ViewData["Title"] = "Home Page"; + ViewData["Title"] = "Point"; }
diff --git a/pointMaster/Views/Home/Privacy.cshtml b/pointMaster/Views/Home/Privacy.cshtml index af4fb19..0187665 100644 --- a/pointMaster/Views/Home/Privacy.cshtml +++ b/pointMaster/Views/Home/Privacy.cshtml @@ -1,5 +1,5 @@ @{ - ViewData["Title"] = "Privacy Policy"; + ViewData["Title"] = "Privatpolitik"; }

@ViewData["Title"]

diff --git a/pointMaster/Views/Patrulje/AddMedlem.cshtml b/pointMaster/Views/Patrulje/AddMedlem.cshtml index 7d1ca82..767c12e 100644 --- a/pointMaster/Views/Patrulje/AddMedlem.cshtml +++ b/pointMaster/Views/Patrulje/AddMedlem.cshtml @@ -1,9 +1,7 @@ @model pointMaster.Models.PatruljeMedlem -@* - For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 -*@ @{ + ViewData["Title"] = "Tilføj medlem"; }
diff --git a/pointMaster/Views/Patrulje/Create.cshtml b/pointMaster/Views/Patrulje/Create.cshtml index 51bb38e..7dabcdb 100644 --- a/pointMaster/Views/Patrulje/Create.cshtml +++ b/pointMaster/Views/Patrulje/Create.cshtml @@ -1,6 +1,6 @@ @model pointMaster.Models.Patrulje @{ - ViewData["Title"] = "Create patrulje"; + ViewData["Title"] = "Opret patrulje"; }

Create Patrulje

diff --git a/pointMaster/Views/Patrulje/Index.cshtml b/pointMaster/Views/Patrulje/Index.cshtml index 18ef34f..e31b6f6 100644 --- a/pointMaster/Views/Patrulje/Index.cshtml +++ b/pointMaster/Views/Patrulje/Index.cshtml @@ -1,5 +1,7 @@ @model pointMaster.Controllers.PatruljeController.IndexViewModel - +@{ + ViewData["Title"] = "Patruljer"; +}

Patruljer

Opret patrulje @foreach (var patrulje in Model.patruljeModels) diff --git a/pointMaster/Views/Point/GivPoint.cshtml b/pointMaster/Views/Point/GivPoint.cshtml index 953b3ab..11e3860 100644 --- a/pointMaster/Views/Point/GivPoint.cshtml +++ b/pointMaster/Views/Point/GivPoint.cshtml @@ -1,6 +1,7 @@ @model pointMaster.Controllers.GivPointViewModel; @{ Layout = "_Point"; + ViewData["Title"] = "Giv Point"; }
diff --git a/pointMaster/Views/Point/Index.cshtml b/pointMaster/Views/Point/Index.cshtml index a7b4ed4..4e5940d 100644 --- a/pointMaster/Views/Point/Index.cshtml +++ b/pointMaster/Views/Point/Index.cshtml @@ -1,8 +1,6 @@ @model pointMaster.Controllers.PointViewModel; -@* - For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 -*@ @{ + ViewData["Title"] = "Point"; } Giv point diff --git a/pointMaster/Views/Point/SelectPoster.cshtml b/pointMaster/Views/Point/SelectPoster.cshtml index bdbd127..9cfb688 100644 --- a/pointMaster/Views/Point/SelectPoster.cshtml +++ b/pointMaster/Views/Point/SelectPoster.cshtml @@ -1,8 +1,6 @@ @model pointMaster.Controllers.SelectPostViewModel -@* - For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 -*@ @{ + ViewData["Title"] = "Vælg post"; }

Vælg post

@foreach(var item in Model.Poster) diff --git a/pointMaster/Views/Point/SkiftPatrulje.cshtml b/pointMaster/Views/Point/SkiftPatrulje.cshtml index bf411b3..9e430a7 100644 --- a/pointMaster/Views/Point/SkiftPatrulje.cshtml +++ b/pointMaster/Views/Point/SkiftPatrulje.cshtml @@ -1,4 +1,7 @@ @model pointMaster.Controllers.SkiftPatruljeViewModel; +@{ + ViewData["Title"] = "Vælg patrulje"; +} @if (Model.post != null) {

Du giver point som: @Model.post.Name

diff --git a/pointMaster/Views/Poster/Create.cshtml b/pointMaster/Views/Poster/Create.cshtml index 7f91400..ce9bd15 100644 --- a/pointMaster/Views/Poster/Create.cshtml +++ b/pointMaster/Views/Poster/Create.cshtml @@ -1,5 +1,6 @@ @model pointMaster.Models.Post @{ + ViewData["Title"] = "Opret post"; } diff --git a/pointMaster/Views/Poster/Index.cshtml b/pointMaster/Views/Poster/Index.cshtml index e43fb84..00643a0 100644 --- a/pointMaster/Views/Poster/Index.cshtml +++ b/pointMaster/Views/Poster/Index.cshtml @@ -1,8 +1,6 @@ @model pointMaster.Controllers.PosterController.RundeViewModel -@* - For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 -*@ @{ + ViewData["Title"] = "Poster"; }
diff --git a/pointMaster/Views/Shared/_Layout.cshtml b/pointMaster/Views/Shared/_Layout.cshtml index 55027b5..9e38656 100644 --- a/pointMaster/Views/Shared/_Layout.cshtml +++ b/pointMaster/Views/Shared/_Layout.cshtml @@ -3,6 +3,7 @@ + @ViewData["Title"] - pointMaster diff --git a/pointMaster/wwwroot/favicon.ico b/pointMaster/wwwroot/favicon.ico deleted file mode 100644 index 63e859b..0000000 Binary files a/pointMaster/wwwroot/favicon.ico and /dev/null differ diff --git a/pointMaster/wwwroot/favicon.svg b/pointMaster/wwwroot/favicon.svg new file mode 100644 index 0000000..f0462c2 --- /dev/null +++ b/pointMaster/wwwroot/favicon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file