@using System.ComponentModel @using Newtonsoft.Json @model Tuple @{ var ThisChannel = Model.Item1; var IfInheritedLewdnessFilterLevel = Model.Item2; var IfInheritedMeannessFilterLevel = Model.Item3; } @Html.Raw(ViewData["breadcrumbs"])
Display Name @ThisChannel.DisplayName
Channel type @(ThisChannel.ChannelType != null ? Enumerations.GetDescription(ThisChannel.ChannelType) : "?")
Lewdness Filter Level
Links Allowed @(ThisChannel.LinksAllowed?.ToString() ?? "unknown")
Lineage summary @ThisChannel.LineageSummary
max attachment bytes @ThisChannel.MaxAttachmentBytes (i hear there's "ByteSize")
max message length @(ThisChannel.MaxTextChars?.ToString() ?? "inherited")
Meanness Filter Level
Messages (count) @(ThisChannel.Messages?.Count ?? 0)
Protocol @ThisChannel.Protocol
Reactions Possible @(ThisChannel.ReactionsPossible?.ToString() ?? "inherited")
Sub Channels @(ThisChannel.SubChannels?.Count ?? 0)
Accounts @(ThisChannel.Users?.Count ?? 0)
@section Scripts{ }