Files
marechai/cicm_web/Areas/Admin/Views/Home/Index.cshtml
2019-05-18 11:45:41 +01:00

59 lines
2.5 KiB
Plaintext

@{
/******************************************************************************
// Canary Islands Computer Museum Website
// ----------------------------------------------------------------------------
//
// Filename : Index.cshtml
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ Description ] ----------------------------------------------------------
//
// Admin page
//
// --[ 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 <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2003-2018 Natalia Portillo
*******************************************************************************/
ViewData["Title"] = "Admin";
}
<h2>Administration</h2>
<div class="content">
<h3>Database administrative pages</h3>
<a asp-controller="BrowserTests">Browser tests</a><br />
<a asp-controller="Companies">Companies</a><br />
<a asp-controller="CompanyDescriptions">Company descriptions</a><br />
<a asp-controller="Gpus">GPUs</a><br />
<a asp-controller="InstructionSets">Instruction sets</a><br />
<a asp-controller="InstructionSetExtensions">Instruction set extensions</a><br />
<a asp-controller="MachineFamilies">Machine families</a><br />
<a asp-controller="Machines">Machines</a><br />
<a asp-controller="MemoryByMachines">Memory by machines</a><br />
<a asp-controller="News">News</a><br />
<a asp-controller="ProcessorsByMachines">Processors by machines</a><br />
<a asp-controller="Processors">Processors</a><br />
<a asp-controller="Resolutions">Resolutions</a><br />
<a asp-controller="SoundSynths">Sound synthetizers</a><br />
<a asp-controller="StorageByMachines">Storage by machines</a><br />
</div>
<div class="content">
<h3>User administrative pages</h3>
@* TODO *@ To be implemented
</div>