33 lines
875 B
HTML
33 lines
875 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{> templateIncludes/style.css.html}}
|
|
</head>
|
|
<body>
|
|
<h2>Freelancer Profiles</h2>
|
|
<table>
|
|
<tr>
|
|
<th>Freelancer</th>
|
|
<th>Basic Information</th>
|
|
<th>Commission State</th>
|
|
</tr>
|
|
{{#freelancerProfiles}}
|
|
<tr>
|
|
<th>
|
|
<form action="/customer/{{name}}" method="post">
|
|
<button type="submit" name="freelancerID" value="{{id}}" class="button">{{name}}</button>
|
|
</form>
|
|
</th>
|
|
<th>{{basicinformation}}</th>
|
|
<th>{{commissionsclosed}}</th>
|
|
</tr>
|
|
{{/freelancerProfiles}}
|
|
</table>
|
|
{{> templateIncludes/pagination.html.html}}
|
|
{{> templateIncludes/freelancerLoginSignupProfileLogoutInterface.html.html}}
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|