642 lines
25 KiB
Vue
642 lines
25 KiB
Vue
<script lang="ts">
|
|
export const description = 'An products dashboard with a sidebar navigation. The sidebar has icon navigation. The content area has a breadcrumb and search in the header. It displays a list of products in a table with actions.'
|
|
export const iframeHeight = '938px'
|
|
export const containerClass = 'w-full h-full'
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
CircleUser,
|
|
File,
|
|
Home,
|
|
LineChart,
|
|
ListFilter,
|
|
MoreHorizontal,
|
|
Package,
|
|
Package2,
|
|
PanelLeft,
|
|
PlusCircle,
|
|
Search,
|
|
Settings,
|
|
ShoppingCart,
|
|
Users2,
|
|
} from 'lucide-vue-next'
|
|
|
|
import { Badge } from '@/lib/registry/new-york/ui/badge'
|
|
import { Button } from '@/lib/registry/new-york/ui/button'
|
|
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/lib/registry/new-york/ui/card'
|
|
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger } from '@/lib/registry/new-york/ui/dropdown-menu'
|
|
import { Input } from '@/lib/registry/new-york/ui/input'
|
|
import {
|
|
Breadcrumb,
|
|
BreadcrumbItem,
|
|
BreadcrumbLink,
|
|
BreadcrumbList,
|
|
BreadcrumbPage,
|
|
BreadcrumbSeparator,
|
|
} from '@/lib/registry/new-york/ui/breadcrumb'
|
|
import { Sheet, SheetContent, SheetTrigger } from '@/lib/registry/new-york/ui/sheet'
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow,
|
|
} from '@/lib/registry/new-york/ui/table'
|
|
import {
|
|
Tabs,
|
|
TabsContent,
|
|
TabsList,
|
|
TabsTrigger,
|
|
} from '@/lib/registry/new-york/ui/tabs'
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from '@/lib/registry/new-york/ui/tooltip'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex min-h-screen w-full flex-col bg-muted/40">
|
|
<aside class="fixed inset-y-0 left-0 z-10 hidden w-14 flex-col border-r bg-background sm:flex">
|
|
<nav class="flex flex-col items-center gap-4 px-2 py-4">
|
|
<a
|
|
href="#"
|
|
class="group flex h-9 w-9 shrink-0 items-center justify-center gap-2 rounded-full bg-primary text-lg font-semibold text-primary-foreground md:h-8 md:w-8 md:text-base"
|
|
>
|
|
<Package2 class="h-4 w-4 transition-all group-hover:scale-110" />
|
|
<span class="sr-only">Acme Inc</span>
|
|
</a>
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<a
|
|
href="#"
|
|
class="flex h-9 w-9 items-center justify-center rounded-lg text-muted-foreground transition-colors hover:text-foreground md:h-8 md:w-8"
|
|
>
|
|
<Home class="h-5 w-5" />
|
|
<span class="sr-only">Dashboard</span>
|
|
</a>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right">
|
|
Dashboard
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<a
|
|
href="#"
|
|
class="flex h-9 w-9 items-center justify-center rounded-lg transition-colors hover:text-foreground md:h-8 md:w-8"
|
|
>
|
|
<ShoppingCart class="h-5 w-5" />
|
|
<span class="sr-only">Orders</span>
|
|
</a>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right">
|
|
Orders
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<a
|
|
href="#"
|
|
class="flex h-9 w-9 items-center justify-center rounded-lg bg-accent text-accent-foreground transition-colors hover:text-foreground md:h-8 md:w-8"
|
|
>
|
|
<Package class="h-5 w-5" />
|
|
<span class="sr-only">Products</span>
|
|
</a>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right">
|
|
Products
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<a
|
|
href="#"
|
|
class="flex h-9 w-9 items-center justify-center rounded-lg text-muted-foreground transition-colors hover:text-foreground md:h-8 md:w-8"
|
|
>
|
|
<Users2 class="h-5 w-5" />
|
|
<span class="sr-only">Customers</span>
|
|
</a>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right">
|
|
Customers
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<a
|
|
href="#"
|
|
class="flex h-9 w-9 items-center justify-center rounded-lg text-muted-foreground transition-colors hover:text-foreground md:h-8 md:w-8"
|
|
>
|
|
<LineChart class="h-5 w-5" />
|
|
<span class="sr-only">Analytics</span>
|
|
</a>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right">
|
|
Analytics
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</nav>
|
|
<nav class="mt-auto flex flex-col items-center gap-4 px-2 py-4">
|
|
<Tooltip>
|
|
<TooltipTrigger as-child>
|
|
<a
|
|
href="#"
|
|
class="flex h-9 w-9 items-center justify-center rounded-lg text-muted-foreground transition-colors hover:text-foreground md:h-8 md:w-8"
|
|
>
|
|
<Settings class="h-5 w-5" />
|
|
<span class="sr-only">Settings</span>
|
|
</a>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="right">
|
|
Settings
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</nav>
|
|
</aside>
|
|
<div class="flex flex-col sm:gap-4 sm:py-4 sm:pl-14">
|
|
<header class="sticky top-0 z-30 flex h-14 items-center gap-4 border-b bg-background px-4 sm:static sm:h-auto sm:border-0 sm:bg-transparent sm:px-6">
|
|
<Sheet>
|
|
<SheetTrigger as-child>
|
|
<Button size="icon" variant="outline" class="sm:hidden">
|
|
<PanelLeft class="h-5 w-5" />
|
|
<span class="sr-only">Toggle Menu</span>
|
|
</Button>
|
|
</SheetTrigger>
|
|
<SheetContent side="left" class="sm:max-w-xs">
|
|
<nav class="grid gap-6 text-lg font-medium">
|
|
<a
|
|
href="#"
|
|
class="group flex h-10 w-10 shrink-0 items-center justify-center gap-2 rounded-full bg-primary text-lg font-semibold text-primary-foreground md:text-base"
|
|
>
|
|
<Package2 class="h-5 w-5 transition-all group-hover:scale-110" />
|
|
<span class="sr-only">Acme Inc</span>
|
|
</a>
|
|
<a
|
|
href="#"
|
|
class="flex items-center gap-4 px-2.5 text-muted-foreground hover:text-foreground"
|
|
>
|
|
<Home class="h-5 w-5" />
|
|
Dashboard
|
|
</a>
|
|
<a
|
|
href="#"
|
|
class="flex items-center gap-4 px-2.5 text-muted-foreground hover:text-foreground"
|
|
>
|
|
<ShoppingCart class="h-5 w-5" />
|
|
Orders
|
|
</a>
|
|
<a
|
|
href="#"
|
|
class="flex items-center gap-4 px-2.5 text-foreground"
|
|
>
|
|
<Package class="h-5 w-5" />
|
|
Products
|
|
</a>
|
|
<a
|
|
href="#"
|
|
class="flex items-center gap-4 px-2.5 text-muted-foreground hover:text-foreground"
|
|
>
|
|
<Users2 class="h-5 w-5" />
|
|
Customers
|
|
</a>
|
|
<a
|
|
href="#"
|
|
class="flex items-center gap-4 px-2.5 text-muted-foreground hover:text-foreground"
|
|
>
|
|
<LineChart class="h-5 w-5" />
|
|
Settings
|
|
</a>
|
|
</nav>
|
|
</SheetContent>
|
|
</Sheet>
|
|
<Breadcrumb class="hidden md:flex">
|
|
<BreadcrumbList>
|
|
<BreadcrumbItem>
|
|
<BreadcrumbLink as-child>
|
|
<a href="#">Dashboard</a>
|
|
</BreadcrumbLink>
|
|
</BreadcrumbItem>
|
|
<BreadcrumbSeparator />
|
|
<BreadcrumbItem>
|
|
<BreadcrumbLink as-child>
|
|
<a href="#">Products</a>
|
|
</BreadcrumbLink>
|
|
</BreadcrumbItem>
|
|
<BreadcrumbSeparator />
|
|
<BreadcrumbItem>
|
|
<BreadcrumbPage>All Products</BreadcrumbPage>
|
|
</BreadcrumbItem>
|
|
</BreadcrumbList>
|
|
</Breadcrumb>
|
|
<div class="relative ml-auto flex-1 md:grow-0">
|
|
<Search class="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
type="search"
|
|
placeholder="Search..."
|
|
class="w-full rounded-lg bg-background pl-8 md:w-[200px] lg:w-[320px]"
|
|
/>
|
|
</div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button variant="secondary" size="icon" class="rounded-full">
|
|
<CircleUser class="h-5 w-5" />
|
|
<span class="sr-only">Toggle user menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>My Account</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem>Settings</DropdownMenuItem>
|
|
<DropdownMenuItem>Support</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem>Logout</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</header>
|
|
<main class="grid flex-1 items-start gap-4 p-4 sm:px-6 sm:py-0 md:gap-8">
|
|
<Tabs default-value="all">
|
|
<div class="flex items-center">
|
|
<TabsList>
|
|
<TabsTrigger value="all">
|
|
All
|
|
</TabsTrigger>
|
|
<TabsTrigger value="active">
|
|
Active
|
|
</TabsTrigger>
|
|
<TabsTrigger value="draft">
|
|
Draft
|
|
</TabsTrigger>
|
|
<TabsTrigger value="archived" class="hidden sm:flex">
|
|
Archived
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
<div class="ml-auto flex items-center gap-2">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button variant="outline" size="sm" class="h-7 gap-1">
|
|
<ListFilter class="h-3.5 w-3.5" />
|
|
<span class="sr-only sm:not-sr-only sm:whitespace-nowrap">
|
|
Filter
|
|
</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Filter by</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem checked>
|
|
Active
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem>Draft</DropdownMenuItem>
|
|
<DropdownMenuItem>
|
|
Archived
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
<Button size="sm" variant="outline" class="h-7 gap-1">
|
|
<File class="h-3.5 w-3.5" />
|
|
<span class="sr-only sm:not-sr-only sm:whitespace-nowrap">
|
|
Export
|
|
</span>
|
|
</Button>
|
|
<Button size="sm" class="h-7 gap-1">
|
|
<PlusCircle class="h-3.5 w-3.5" />
|
|
<span class="sr-only sm:not-sr-only sm:whitespace-nowrap">
|
|
Add Product
|
|
</span>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<TabsContent value="all">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Products</CardTitle>
|
|
<CardDescription>
|
|
Manage your products and view their sales performance.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
<TableHead class="hidden w-[100px] sm:table-cell">
|
|
<span class="sr-only">img</span>
|
|
</TableHead>
|
|
<TableHead>Name</TableHead>
|
|
<TableHead>Status</TableHead>
|
|
<TableHead class="hidden md:table-cell">
|
|
Price
|
|
</TableHead>
|
|
<TableHead class="hidden md:table-cell">
|
|
Total Sales
|
|
</TableHead>
|
|
<TableHead class="hidden md:table-cell">
|
|
Created at
|
|
</TableHead>
|
|
<TableHead>
|
|
<span class="sr-only">Actions</span>
|
|
</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
<TableRow>
|
|
<TableCell class="hidden sm:table-cell">
|
|
<img
|
|
alt="Product image"
|
|
class="aspect-square rounded-md object-cover"
|
|
height="64"
|
|
src="/placeholder.svg"
|
|
width="64"
|
|
>
|
|
</TableCell>
|
|
<TableCell class="font-medium">
|
|
Laser Lemonade Machine
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="outline">
|
|
Draft
|
|
</Badge>
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
$499.99
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
25
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
2023-07-12 10:42 AM
|
|
</TableCell>
|
|
<TableCell>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button
|
|
aria-haspopup="true"
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
<span class="sr-only">Toggle menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem>Edit</DropdownMenuItem>
|
|
<DropdownMenuItem>Delete</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell class="hidden sm:table-cell">
|
|
<img
|
|
alt="Product image"
|
|
class="aspect-square rounded-md object-cover"
|
|
height="64"
|
|
src="/placeholder.svg"
|
|
width="64"
|
|
>
|
|
</TableCell>
|
|
<TableCell class="font-medium">
|
|
Hypernova Headphones
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="outline">
|
|
Active
|
|
</Badge>
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
$129.99
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
100
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
2023-10-18 03:21 PM
|
|
</TableCell>
|
|
<TableCell>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button
|
|
aria-haspopup="true"
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
<span class="sr-only">Toggle menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem>Edit</DropdownMenuItem>
|
|
<DropdownMenuItem>Delete</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell class="hidden sm:table-cell">
|
|
<img
|
|
alt="Product image"
|
|
class="aspect-square rounded-md object-cover"
|
|
height="64"
|
|
src="/placeholder.svg"
|
|
width="64"
|
|
>
|
|
</TableCell>
|
|
<TableCell class="font-medium">
|
|
AeroGlow Desk Lamp
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="outline">
|
|
Active
|
|
</Badge>
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
$39.99
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
50
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
2023-11-29 08:15 AM
|
|
</TableCell>
|
|
<TableCell>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button
|
|
aria-haspopup="true"
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
<span class="sr-only">Toggle menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem>Edit</DropdownMenuItem>
|
|
<DropdownMenuItem>Delete</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell class="hidden sm:table-cell">
|
|
<img
|
|
alt="Product image"
|
|
class="aspect-square rounded-md object-cover"
|
|
height="64"
|
|
src="/placeholder.svg"
|
|
width="64"
|
|
>
|
|
</TableCell>
|
|
<TableCell class="font-medium">
|
|
TechTonic Energy Drink
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="secondary">
|
|
Draft
|
|
</Badge>
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
$2.99
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
0
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
2023-12-25 11:59 PM
|
|
</TableCell>
|
|
<TableCell>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button
|
|
aria-haspopup="true"
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
<span class="sr-only">Toggle menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem>Edit</DropdownMenuItem>
|
|
<DropdownMenuItem>Delete</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell class="hidden sm:table-cell">
|
|
<img
|
|
alt="Product image"
|
|
class="aspect-square rounded-md object-cover"
|
|
height="64"
|
|
src="/placeholder.svg"
|
|
width="64"
|
|
>
|
|
</TableCell>
|
|
<TableCell class="font-medium">
|
|
Gamer Gear Pro Controller
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="outline">
|
|
Active
|
|
</Badge>
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
$59.99
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
75
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
2024-01-01 12:00 AM
|
|
</TableCell>
|
|
<TableCell>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button
|
|
aria-haspopup="true"
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
<span class="sr-only">Toggle menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem>Edit</DropdownMenuItem>
|
|
<DropdownMenuItem>Delete</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell class="hidden sm:table-cell">
|
|
<img
|
|
alt="Product image"
|
|
class="aspect-square rounded-md object-cover"
|
|
height="64"
|
|
src="/placeholder.svg"
|
|
width="64"
|
|
>
|
|
</TableCell>
|
|
<TableCell class="font-medium">
|
|
Luminous VR Headset
|
|
</TableCell>
|
|
<TableCell>
|
|
<Badge variant="outline">
|
|
Active
|
|
</Badge>
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
$199.99
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
30
|
|
</TableCell>
|
|
<TableCell class="hidden md:table-cell">
|
|
2024-02-14 02:14 PM
|
|
</TableCell>
|
|
<TableCell>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button
|
|
aria-haspopup="true"
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<MoreHorizontal class="h-4 w-4" />
|
|
<span class="sr-only">Toggle menu</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem>Edit</DropdownMenuItem>
|
|
<DropdownMenuItem>Delete</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
</TableBody>
|
|
</Table>
|
|
</CardContent>
|
|
<CardFooter>
|
|
<div class="text-xs text-muted-foreground">
|
|
Showing <strong>1-10</strong> of <strong>32</strong>
|
|
products
|
|
</div>
|
|
</CardFooter>
|
|
</Card>
|
|
</TabsContent>
|
|
</Tabs>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</template>
|