fix: model name

This commit is contained in:
Martin Eyben 2024-12-03 12:03:58 +00:00
parent 5a0b1f1a0f
commit 4b07c56624

View File

@ -8,35 +8,35 @@
<%= member.name %> <%= member.name %>
</title> </title>
<%- include('partials/links.ejs') %> <%- include('partials/links.ejs') %>
</head> </head>
<body> <body>
<%- include('partials/header.ejs') %> <%- include('partials/header.ejs') %>
<h1> <h1>
<%= member.name %> <%= member.name %>
</h1> </h1>
<hr> <hr>
<h2>Caractéristiques</h2> <h2>Caractéristiques</h2>
<pre> <pre>
id: <%= member.id_member%> id: <%= member.id_member%>
name: <%= member.name%> name: <%= member.name%>
</pre> </pre>
<h2>Liste des modèles faisable</h2> <h2>Liste des modèles faisable</h2>
<ul> <ul>
<% models.forEach(function(model) { %> <% models.forEach(function(model) { %>
<li> <li>
<a href="/models/byname/<%=model.id%>"> <a href="/models/byid/<%=model.id%>">
<%=model.id%> <%=model.name%>
</a> </a>
</li> </li>
<% }); %> <% }); %>
</ul> </ul>
</body> </body>