@{
-
@Model.NetworkId.ToString("X")
+ foreach (var linked in Model.LinkedAccounts)
+ {
+ @Html.ActionLink(linked.Value.ToString("X"), "ProfileAsync", "Client", new { id = linked.Key}, new { @class = "link-inverse" })
+ }
foreach (string alias in Model.Aliases)
{
- @alias
+ @alias
}
if (ViewBag.Authorized)
diff --git a/WebfrontCore/Views/Server/_ClientActivity.cshtml b/WebfrontCore/Views/Server/_ClientActivity.cshtml
index 464d9284..5b2f33e3 100644
--- a/WebfrontCore/Views/Server/_ClientActivity.cshtml
+++ b/WebfrontCore/Views/Server/_ClientActivity.cshtml
@@ -6,7 +6,7 @@
}
@{
- for (int i = 0; i < Model.ChatHistory.Length; i++)
+ for (int i = 0; i < Model.ChatHistory.Count; i++)
{
string message = @Model.ChatHistory[i].Message;
if (Model.ChatHistory[i].Message == "CONNECTED")
@@ -47,13 +47,13 @@
-@if (Model.ChatHistory.Length > 0)
+@if (Model.ChatHistory.Count > 0)
{
@{
- for (int i = 0; i < Model.ChatHistory.Length; i++)
+ for (int i = 0; i < Model.ChatHistory.Count; i++)
{
string message = @Model.ChatHistory[i].Message;
if (Model.ChatHistory[i].Message == "CONNECTED")
diff --git a/WebfrontCore/Views/Server/_Server.cshtml b/WebfrontCore/Views/Server/_Server.cshtml
index 1a2ea435..209e2743 100644
--- a/WebfrontCore/Views/Server/_Server.cshtml
+++ b/WebfrontCore/Views/Server/_Server.cshtml
@@ -3,7 +3,6 @@
@{
Layout = null;
- ViewBag.Description += Model.Name + ", ";
}