Moved Pokemon Page files into corresponding Page folder w/in directory.
This commit is contained in:
parent
8f1dbebb30
commit
9c87f3e4cf
|
@ -1,6 +1,6 @@
|
|||
|
||||
<!-- Heading + Buttons -->
|
||||
<div class="top-row row w-100 mx-0 bg-secondary py-3">
|
||||
<div class="top-row row rounded-bottom-5 w-100 bg-secondary py-3">
|
||||
|
||||
<div class="col-4"></div>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
|
||||
<!-- Main UI -->
|
||||
<div class="card shadow border-0 mt-4 m-auto w-50">
|
||||
<div class="card shadow border-0 mt-4 m-auto w-75">
|
||||
|
||||
<!-- Table Header -->
|
||||
<div class="card-header bg-secondary bg-gradient ml-0 py-3">
|
||||
|
@ -26,13 +26,13 @@
|
|||
<!-- Table Head -->
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-bg-info col col-2" scope="col"></th>
|
||||
<th class="text-bg-info col" scope="col"></th>
|
||||
<th class="text-bg-info col pokemon-dex-width" scope="col">#</th>
|
||||
<th class="text-bg-info col pokemon-name-width" scope="col">Pokemon</th>
|
||||
<th class="text-bg-info col pokemon-type-width" scope="col">Type</th>
|
||||
<th class="text-bg-info col pokemon-type-width" scope="col">Sleep Type</th>
|
||||
<th class="text-bg-info col pokemon-type-width" scope="col">Speciality</th>
|
||||
<th class="text-bg-info col pokemon-type-width" scope="col"></th>
|
||||
<th class="text-bg-info col " scope="col">Type</th>
|
||||
<th class="text-bg-info col " scope="col">Sleep Type</th>
|
||||
<th class="text-bg-info col " scope="col">Speciality</th>
|
||||
<th class="text-bg-info col " scope="col"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
@if(pokemons == null)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Portfolio.Domain.Features.Pokemon;
|
||||
|
||||
namespace Portfolio.WebUI.Server.Components.Pages
|
||||
namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
|
||||
{
|
||||
public partial class PokemonCreate
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using Microsoft.JSInterop;
|
||||
using Portfolio.Domain.Features.Pokemon;
|
||||
|
||||
namespace Portfolio.WebUI.Server.Components.Pages
|
||||
namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
|
||||
{
|
||||
public partial class PokemonEdit
|
||||
{
|
|
@ -3,7 +3,7 @@ using Portfolio.Domain.Features.Pokemon;
|
|||
using Portfolio.Domain.Features.Pokemon_Natures;
|
||||
using Portfolio.Domain.Features.Pokemon_Subskills;
|
||||
|
||||
namespace Portfolio.WebUI.Server.Components.Pages
|
||||
namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
|
||||
{
|
||||
public partial class PokemonRate
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using Portfolio.Application.Services.PokemonService;
|
||||
using Portfolio.Domain.Features.Pokemon;
|
||||
|
||||
namespace Portfolio.WebUI.Server.Components.Pages
|
||||
namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
|
||||
{
|
||||
public partial class PokemonSleep
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using Microsoft.AspNetCore.Components;
|
||||
using Portfolio.Domain.Features.Pokemon;
|
||||
|
||||
namespace Portfolio.WebUI.Server.Components.Pages
|
||||
namespace Portfolio.WebUI.Server.Components.Pages.Pokemon_Pages
|
||||
{
|
||||
public partial class PokemonView
|
||||
{
|
Loading…
Reference in New Issue