.
This commit is contained in:
parent
4a252bf5b2
commit
6e5e0afa9e
17 changed files with 2143 additions and 25 deletions
|
|
@ -26,7 +26,7 @@
|
|||
<!--Reference the SignalR library. -->
|
||||
<script src="~/js/jquery.signalR-2.2.1.min.js"></script>
|
||||
<!--Reference the autogenerated SignalR hub script. -->
|
||||
<script src="~/signalr/hubs"></script>
|
||||
<script src="~/api/signalr/hubs"></script>
|
||||
<!--SignalR script to update the chat page and send messages.-->
|
||||
<script>
|
||||
$(function () {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,24 @@
|
|||
<dd>
|
||||
@Model.Logins.Count [<a asp-controller="Manage" asp-action="ManageLogins">@SR["Manage"]</a>]
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
<dt>@SR["Full name"]:</dt>
|
||||
<dd>@Model.FullName [<a asp-controller="Manage" asp-action="SetFullName"
|
||||
>@SR[@Model.FullName==null?"Set":"Modify"]</a>]</dd>
|
||||
|
||||
<dt>@SR["Address"]:</dt>
|
||||
<dd>@Model.PostalAddress
|
||||
[<a asp-controller="Manage" asp-action="SetAddress"
|
||||
>@SR[@Model.PostalAddress==null?"Set":"Modify"]</a>]
|
||||
</dd>
|
||||
|
||||
<dt>@SR["Avatar"]:</dt>
|
||||
<dd>@Model.Avatar
|
||||
[<a asp-controller="Manage" asp-action="SetAvatar"
|
||||
>@SR[@Model.Avatar==null?"Set":"Modify"]</a>]
|
||||
</dd>
|
||||
|
||||
<dt>@SR["Activity"]:</dt>
|
||||
<dd>@Model.Activity?.Name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue