This commit is contained in:
Paul Schneider 2017-01-20 14:21:01 +01:00
commit 7e1ad3705b
3 changed files with 45 additions and 12 deletions

View 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>