48 lines
1.0 KiB
Plaintext
48 lines
1.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>
|
|
Information - <%=piece.id_piece%>
|
|
</title>
|
|
|
|
<%- include('partials/links.ejs') %>
|
|
</head>
|
|
|
|
<body>
|
|
<%- include('partials/header.ejs') %>
|
|
|
|
<main>
|
|
<h1>
|
|
Information de la pièce
|
|
</h1>
|
|
<div class="table">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Id Pièce</th>
|
|
<th>Couleur</th>
|
|
<th>Motif</th>
|
|
<th>Forme</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><%=piece.id_piece%></td>
|
|
<td><%=piece.colour.name%> (<%=piece.colour.id_colour%>)</td>
|
|
<td><%=piece.pattern.name%> (<%=piece.pattern.id_pattern%>)</td>
|
|
<td><%=piece.shape.name%> (<%=piece.shape.id_shape%>)</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="box"></div>
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|