DziennikOcen/views/plan.ejs
2022-01-24 20:42:47 +01:00

37 lines
804 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title>Dziennik Ucznia BezVulcan</title>
</head>
<body>
<div class="table-data">
<h2>Display Data using Node.js & MySQL</h2>
<table border="1">
<tr>
<th>Godzina</th>
<th>Dzien tygodnia</th>
<th>Przedmiot</th>
</tr>
<%
if(userData.length!=0){
var i=1;
userData.forEach(function(data){
%>
<tr>
<td><%=i; %></td>
<td><%=plan.id_hour %></td>
<td><%=plan.id_day %></td>
<td><%=plan.id_lession %></td>
</tr>
<% i++; }) %>
<% } else{ %>
<tr>
<td colspan="4">No Data Found</td>
</tr>
<% } %>
</table>
</div>
</body>
</html>