diff --git a/src/Yavsc/Views/Manage/ChangeUserName.cshtml b/src/Yavsc/Views/Manage/ChangeUserName.cshtml
index bd802b30..06e960ee 100644
--- a/src/Yavsc/Views/Manage/ChangeUserName.cshtml
+++ b/src/Yavsc/Views/Manage/ChangeUserName.cshtml
@@ -1,6 +1,6 @@
@model ChangeUserNameViewModel
@{
- ViewData["Title"] = Changer de nom d'utilisateur;
+ ViewData["Title"] = "Changer de nom d'utilisateur";
}
@ViewData["Title"].
diff --git a/src/Yavsc/Views/Shared/DisplayTemplates/BookQuery.cshtml b/src/Yavsc/Views/Shared/DisplayTemplates/BookQuery.cshtml
index 9863bc1a..efff15cd 100644
--- a/src/Yavsc/Views/Shared/DisplayTemplates/BookQuery.cshtml
+++ b/src/Yavsc/Views/Shared/DisplayTemplates/BookQuery.cshtml
@@ -34,12 +34,7 @@
ValidationDate"]
- @if (Model.ValidationDate==null) {
- NonValidee"]
- }
- else {
- @Html.DisplayFor(model => model.ValidationDate)
- }
+ @((Model.ValidationDate==null)?"NonValidee":Html.DisplayFor(model => model.ValidationDate))
diff --git a/src/Yavsc/Views/Shared/DisplayTemplates/CircleAuthorizationToBlogPost.cshtml b/src/Yavsc/Views/Shared/DisplayTemplates/CircleAuthorizationToBlogPost.cshtml
index eb99dff3..e97c8136 100644
--- a/src/Yavsc/Views/Shared/DisplayTemplates/CircleAuthorizationToBlogPost.cshtml
+++ b/src/Yavsc/Views/Shared/DisplayTemplates/CircleAuthorizationToBlogPost.cshtml
@@ -4,7 +4,7 @@
-
- @Html.DisplayNameFor(model => model.Post)
+ @Html.DisplayNameFor(model => model.BlogPost)
-
@Html.DisplayFor(model => model.Allowed)