Git Repository Public Repository

CPE_learningsite

URLs

Copy to Clipboard

This repository has no backups
This repository's network speed is throttled to 100KB/sec

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@using System.Web.UI.HtmlControls
@model CPE.App.Api.Models.TinCanStatementModel

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<div>
    <h4>TinCanStatementModel</h4>
    <hr />
    <dl class="dl-horizontal">
        <dt>
            @Html.DisplayNameFor(model => model.Timestamp)
        </dt>

        <dd>
            @Html.DisplayFor(model => model.Timestamp)
        </dd>

        <dt>
            @Html.DisplayNameFor(model => model.Actor.Name)
        </dt>

        <dd>
            @Html.DisplayFor(model => model.Actor.Name)
        </dd>

        <dt>
            @Html.DisplayNameFor(model => model.Verb.Id)
        </dt>

        <dd>
            @Html.DisplayFor(model => model.Verb.Id)
        </dd>
        
        <dt>
            @Html.DisplayNameFor(model => model.Object.Definition.Name.EnUs)
        </dt>

        <dd>
            @Html.DisplayFor(model => model.Object.Definition.Name.EnUs)
        </dd>

    </dl>
</div>
<p>
    @Html.ViewData
</p>

Commits for CPE_learningsiteCPE/CPE.App/CPE.App.Api/Views/Statement/Index.cshtml

Diff revisions: vs.
Revision Author Commited Message
4cd176 ... v.shishlov Fri 27 Aug, 2021 14:33:17 +0000

initial commit