@using SharedLibraryCore.Configuration @model WebfrontCore.ViewModels.CommunityInfo @{ IEnumerable> allRules = new[] {new KeyValuePair(ViewBag.Localization["WEBFRONT_ABOUT_GLOBAL_RULES"], Model.GlobalRules)}; var serverRules = Model.ServerRules?.Where(server => server.Value != null && server.Value.Any()).ToList(); if (serverRules?.Any() ?? false) { allRules = allRules.Union(serverRules); } }
@if (Model.CommunityInformation.EnableBanner) { @Model.CommunityInformation.Name } @if (!string.IsNullOrWhiteSpace(Model.CommunityInformation.Name)) {

} @if (!string.IsNullOrWhiteSpace(Model.CommunityInformation.Description)) { } @if (allRules.Any(rule => rule.Value.Any())) {

@ViewBag.Localization["WEBFRONT_ABOUT_COMMUNITY_GUIDELINES"]

} @foreach (var (serverName, rules) in allRules) { if (!rules.Any()) { continue; } var start = 1;
@foreach (var rule in rules) {
@start.
start++; }
}