We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f06538 commit 3baa867Copy full SHA for 3baa867
RandomData2/RandomDataWebApi/Areas/HelpPage/Views/Help/ResourceModel.cshtml
@@ -3,6 +3,10 @@
3
@using RandomDataWebApi.Areas.HelpPage.ModelDescriptions
4
@model ModelDescription
5
6
+@{
7
+ ViewBag.Title = Model.Name;
8
+}
9
+
10
<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
11
<div id="body" class="help-page">
12
<section class="featured">
@@ -12,7 +16,7 @@
16
</p>
13
17
</div>
14
18
</section>
15
- <h1>@Model.Name</h1>
19
+ <h1>@ViewBag.Title</h1>
20
<p>@Model.Documentation</p>
21
<section class="content-wrapper main-content clear-fix">
22
@Html.DisplayFor(m => Model)
0 commit comments