Freelancer Profile Listing

-Template, Database access, Handler
-Freelancer Database Table
This commit is contained in:
Tina_Azure
2023-04-02 00:27:02 +02:00
parent b90f72f61a
commit 04e41c2dce
4 changed files with 167 additions and 9 deletions

View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h2>Freelancer Profiles</h2>
<table>
<tr>
<th>Freelancer</th>
<th>Basic Information</th>
<th>Commission State</th>
</tr>
{{#freelancerProfiles}}
<tr>
<th><a href="/customer/{{name}}/{{id}}">{{name}}</a></th>
<th>{{basicinformation}}</th>
<th>{{commissionsclosed}}</th>
</tr>
{{/freelancerProfiles}}
</table>
</body>
</html>