._.
This commit is contained in:
parent
a6f9918c43
commit
a718b5a8b1
@ -223,7 +223,6 @@ const Accessories = () => {
|
|||||||
<table className="table table-bordered">
|
<table className="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
|
||||||
<th>Название</th>
|
<th>Название</th>
|
||||||
<th>Объем</th>
|
<th>Объем</th>
|
||||||
<th>Вес</th>
|
<th>Вес</th>
|
||||||
@ -235,7 +234,6 @@ const Accessories = () => {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{accessories.map((accessory) => (
|
{accessories.map((accessory) => (
|
||||||
<tr key={accessory.id}>
|
<tr key={accessory.id}>
|
||||||
<td>{accessory.id}</td>
|
|
||||||
<td>{accessory.name}</td>
|
<td>{accessory.name}</td>
|
||||||
<td>{accessory.volume}</td>
|
<td>{accessory.volume}</td>
|
||||||
<td>{accessory.weight}</td>
|
<td>{accessory.weight}</td>
|
||||||
|
|||||||
@ -173,7 +173,6 @@ const Cities = () => {
|
|||||||
<table className="table table-bordered">
|
<table className="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
|
||||||
<th>Название</th>
|
<th>Название</th>
|
||||||
<th>Федеральный округ</th>
|
<th>Федеральный округ</th>
|
||||||
<th>Действия</th>
|
<th>Действия</th>
|
||||||
@ -182,7 +181,6 @@ const Cities = () => {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{cities.map((city) => (
|
{cities.map((city) => (
|
||||||
<tr key={city.id}>
|
<tr key={city.id}>
|
||||||
<td>{city.id}</td>
|
|
||||||
<td>{city.name}</td>
|
<td>{city.name}</td>
|
||||||
<td>{city.federal_district_name}</td>
|
<td>{city.federal_district_name}</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
@ -125,7 +125,6 @@ const FederalDistricts = () => {
|
|||||||
<table className="table table-bordered">
|
<table className="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
|
||||||
<th>Название</th>
|
<th>Название</th>
|
||||||
<th>Действия</th>
|
<th>Действия</th>
|
||||||
</tr>
|
</tr>
|
||||||
@ -133,7 +132,6 @@ const FederalDistricts = () => {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{districts.map((district) => (
|
{districts.map((district) => (
|
||||||
<tr key={district.id}>
|
<tr key={district.id}>
|
||||||
<td>{district.id}</td>
|
|
||||||
<td>{district.name}</td>
|
<td>{district.name}</td>
|
||||||
<td>
|
<td>
|
||||||
<div className="btn-group">
|
<div className="btn-group">
|
||||||
|
|||||||
@ -117,7 +117,6 @@ const Roles = () => {
|
|||||||
<table className="table table-bordered">
|
<table className="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
|
||||||
<th>Название</th>
|
<th>Название</th>
|
||||||
<th>Действия</th>
|
<th>Действия</th>
|
||||||
</tr>
|
</tr>
|
||||||
@ -125,7 +124,6 @@ const Roles = () => {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{roles.map((role) => (
|
{roles.map((role) => (
|
||||||
<tr key={role.id}>
|
<tr key={role.id}>
|
||||||
<td>{role.id}</td>
|
|
||||||
<td>{role.name}</td>
|
<td>{role.name}</td>
|
||||||
<td>
|
<td>
|
||||||
<div className="btn-group">
|
<div className="btn-group">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user