Freelancer Profile Listing
-Template, Database access, Handler -Freelancer Database Table
This commit is contained in:
39
templates/customerIndex_FreelancerListing.html
Normal file
39
templates/customerIndex_FreelancerListing.html
Normal 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>
|
Reference in New Issue
Block a user