2018-06-05 17:31:36 -04:00
|
|
|
@model IEnumerable<SharedLibraryCore.Dtos.ChatInfo>
|
|
|
|
@{
|
|
|
|
Layout = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
<div class="client-message-context bg-dark p-2 mt-2 mb-2 border-top border-bottom">
|
|
|
|
<h5>@Model.First().Time.ToString()</h5>
|
|
|
|
@foreach (var message in Model)
|
|
|
|
{
|
2018-09-16 16:34:16 -04:00
|
|
|
<span class="text-white">@Html.ActionLink(@message.Name, "ProfileAsync", "Client", new { id = message.ClientId})</span><span> — @message.Message</span><br />
|
2018-06-05 17:31:36 -04:00
|
|
|
}
|
|
|
|
</div>
|