initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Api / Views / Statement / Index.cshtml
1 @using System.Web.UI.HtmlControls
2 @model CPE.App.Api.Models.TinCanStatementModel
3
4 @{
5     ViewBag.Title = "Index";
6 }
7
8 <h2>Index</h2>
9
10 <div>
11     <h4>TinCanStatementModel</h4>
12     <hr />
13     <dl class="dl-horizontal">
14         <dt>
15             @Html.DisplayNameFor(model => model.Timestamp)
16         </dt>
17
18         <dd>
19             @Html.DisplayFor(model => model.Timestamp)
20         </dd>
21
22         <dt>
23             @Html.DisplayNameFor(model => model.Actor.Name)
24         </dt>
25
26         <dd>
27             @Html.DisplayFor(model => model.Actor.Name)
28         </dd>
29
30         <dt>
31             @Html.DisplayNameFor(model => model.Verb.Id)
32         </dt>
33
34         <dd>
35             @Html.DisplayFor(model => model.Verb.Id)
36         </dd>
37         
38         <dt>
39             @Html.DisplayNameFor(model => model.Object.Definition.Name.EnUs)
40         </dt>
41
42         <dd>
43             @Html.DisplayFor(model => model.Object.Definition.Name.EnUs)
44         </dd>
45
46     </dl>
47 </div>
48 <p>
49     @Html.ViewData
50 </p>