@{ /****************************************************************************** // MARECHAI: Master repository of computing history artifacts information // ---------------------------------------------------------------------------- // // Author(s) : Natalia Portillo // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2003-2020 Natalia Portillo *******************************************************************************/ } @page "/companies" @page "/companies/country/{CountryId:int}" @page "/companies/{StartingCharacter}" @inherits OwningComponentBase @inject IStringLocalizer L @inject IWebHostEnvironment Host @if(_companies is null) {

@L["Loading..."]

return; } @if(CountryId.HasValue) {

@string.Format(L["Companies founded in {0}."], L[_countryName]) @if(File.Exists(Path.Combine(Host.WebRootPath, "assets/flags/countries", $"{CountryId:D3}.svg"))) { }

} @if(_character.HasValue) {

@string.Format(L["Companies which name starts with {0}."], _character)

} @if(_companies.Any()) {
@string.Format(L["{0} companies found in the database."], _companies.Count())
@foreach(var company in _companies) { }
@if(company.LastLogo != null && File.Exists(Path.Combine(Host.WebRootPath, "assets/logos", company.LastLogo + ".svg"))) { } @company.Name
} else {

@L["There are no companies in the database."]

}