display
This commit is contained in:
parent
23dc3c3f19
commit
7e1ad3705b
3 changed files with 45 additions and 12 deletions
16
Yavsc/Views/Shared/DisplayTemplates/Circle.cshtml
Normal file
16
Yavsc/Views/Shared/DisplayTemplates/Circle.cshtml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
@model Circle
|
||||
|
||||
<dl class="circle dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Name)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Name)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Owner)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Owner)
|
||||
</dd>
|
||||
</dl>
|
||||
Loading…
Add table
Add a link
Reference in a new issue