This repository has been archived on 2025-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavecomm/templates/customerIndex_FreelancerListing.html
Tina_Azure 8d2033b316 minor refactoring in config
implement pagination
2023-05-04 22:22:21 +02:00

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>