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