-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7ba14f
commit cdff868
Showing
8 changed files
with
64 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 1 addition & 55 deletions
56
.../hq/src/app/clients/client-details/client-project-list/client-project-list.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1 @@ | ||
<table class="min-w-full border-collapse border"> | ||
<thead class="border"> | ||
<tr> | ||
<th class="">Client Name</th> | ||
<th class="">Rate</th> | ||
<th class="">Billing Email</th> | ||
<th class="">Official Name</th> | ||
<th class=""><button>Client</button></th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td class="">48HrBooks</td> | ||
<td class="">$105.00</td> | ||
<td class="">billiningEmail@48HrBooks.com</td> | ||
<td class="">Official Name - Probably longer than the Name</td> | ||
<td><a>VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="">ABB</td> | ||
<td class="">$115.00</td> | ||
<td class="">billiningEmail@abb.com</td> | ||
<td class="">Official Name - Probably longer than the Name</td> | ||
<td><a>VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="">JDM</td> | ||
<td class="">$100.00</td> | ||
<td class="">billiningEmail@jdm.com</td> | ||
<td class="">Official Name - Probably longer than the Name</td> | ||
<td><a>VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="">Milliken</td> | ||
<td class="">$100.00</td> | ||
<td class="">billiningEmail@milliken.com</td> | ||
<td class="">Official Name - Probably longer than the Name</td> | ||
<td><a>VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="">XB</td> | ||
<td class="">$100.00</td> | ||
<td class="">billiningEmail@xb.com</td> | ||
<td class="">Official Name - Probably longer than the Name</td> | ||
<td><a>VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="">Zomedica</td> | ||
<td class="">$100.00</td> | ||
<td class="">billiningEmail@zomedica.com</td> | ||
<td class="">Official Name - Probably longer than the Name</td> | ||
<td><a>VIEW</a></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
project list |
50 changes: 45 additions & 5 deletions
50
src/angular/hq/src/app/clients/client-list/client-list.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,53 @@ | ||
<div class="px-[30px]"> | ||
<div class="px-5"> | ||
<h1 class="font-rajdhani font-semibold text-3xl">Clients</h1> | ||
|
||
<div class="grid gap-7 grid-flow-col auto-cols-max pt-3"> | ||
| ||
</div> | ||
</div> | ||
|
||
<div class="px-[30px] pt-3"> | ||
<a routerLink="someId1">Some ID 1</a><br /> | ||
<a routerLink="someId2">Some ID 2</a><br /> | ||
<a routerLink="someId3">Some ID 3</a> | ||
<table class="min-w-full border-spacing-0 border-separate"> | ||
<thead> | ||
<tr class="sticky top-0 text-left"> | ||
<th scope="col" class="bg-blue-900 border-steel-blue-600 border-y py-3 pl-5">Client Name</th> | ||
<th scope="col" class="bg-blue-900 border-steel-blue-600 border-y py-3">Official Name</th> | ||
<th scope="col" class="bg-blue-900 border-steel-blue-600 border-y py-3">Billing Email</th> | ||
<th scope="col" class="bg-blue-900 border-steel-blue-600 border-y py-3 text-right pr-5" colspan="2"> | ||
<button class="px-2 py-2 bg-orange-500 hover:bg-orange-600 text-white rounded-[2px] min-w-[120px] font-normal">Client</button> | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
@for(i of [1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10]; track i) | ||
{ | ||
<tr class="even:bg-gray-850 odd:bg-black-alt"> | ||
<td class="border-b border-black py-2 pl-5">Client {{ i }}</td> | ||
<td class="border-b border-black py-2">$105.00</td> | ||
<td class="border-b border-black py-2">billiningEmail@client{{ i }}.com</td> | ||
<td class="border-b border-black py-2">Official Name - Probably longer than the Name</td> | ||
<td class="border-b border-black py-2 text-right pr-5"><a [routerLink]="[i]" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
} | ||
</tbody> | ||
</table> | ||
<div class="justify-between items-center grid grid-cols-3 py-3 px-5 bg-blue-900 border-y border-steel-blue-600"> | ||
<div> | ||
<select class="bg-black-alt border border-gray-300 rounded py-1 px-2 mr-2"> | ||
<option value="20">20</option> | ||
<!-- Add more options as needed --> | ||
</select> | ||
<span>items per page</span> | ||
</div> | ||
<div class="flex items-center justify-center"> | ||
<a href="#" class="mx-2 hover:text-gray-200"><</a> | ||
<span class="mx-2">1</span> | ||
<a href="#" class="mx-2 hover:text-gray-200">2</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">3</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">4</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">5</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">></a> | ||
</div> | ||
<div class="flex justify-end text-xs"> | ||
1-20 / 200 items | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,121 +1 @@ | ||
<router-outlet></router-outlet> | ||
|
||
<div class="overflow-hidden"> | ||
<div class="px-6"> | ||
<table class="min-w-full text-left"> | ||
<thead class="sticky top-0"> | ||
<tr> | ||
<th scope="col" class="py-3 relative">Client Name | ||
<div class="bg-blue-900 border-y border-steel-blue-600 absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-blue-900 border-y border-steel-blue-600 absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</th> | ||
<th scope="col" class="py-3">Official Name</th> | ||
<th scope="col" class="py-3">Billing Email</th> | ||
<th scope="col" colspan="2" class="py-3 text-right"> | ||
<button class="px-2 py-2 bg-orange-500 hover:bg-orange-600 text-white rounded-[2px] min-w-[120px] font-normal">Client</button> | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td class="py-2 relative">48HrBooks | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$105.00</td> | ||
<td class="py-2">billiningEmail@48HrBooks.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="py-2 relative">ABB | ||
<div class="bg-black-alt border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-black-alt border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$115.00</td> | ||
<td class="py-2">billiningEmail@abb.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="py-2 relative">JDM | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$100.00</td> | ||
<td class="py-2">billiningEmail@jdm.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="py-2 relative">Milliken | ||
<div class="bg-black-alt border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-black-alt border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$100.00</td> | ||
<td class="py-2">billiningEmail@milliken.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="py-2 relative">XB | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$100.00</td> | ||
<td class="py-2">billiningEmail@xb.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="py-2 relative">Zomedica | ||
<div class="bg-black-alt border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-black-alt border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$100.00</td> | ||
<td class="py-2">billiningEmail@zomedica.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
<tr> | ||
<td class="py-2 relative">48HrBooks | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-gray-850 border-b border-black absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-2">$105.00</td> | ||
<td class="py-2">billiningEmail@48HrBooks.com</td> | ||
<td class="py-2">Official Name - Probably longer than the Name</td> | ||
<td class="py-2 text-right"><a href="#" class="text-teal-200 hover:text-teal-300">VIEW</a></td> | ||
</tr> | ||
</tbody> | ||
<tfoot> | ||
<tr> | ||
<td class="py-3 relative"> | ||
<div class="flex"> | ||
<div class="flex-none"> | ||
<select class="bg-black-alt border border-gray-300 rounded py-1 px-2"> | ||
<option value="20">20</option> | ||
<!-- Add more options as needed --> | ||
</select> | ||
<span>items per page</span> | ||
</div> | ||
</div> | ||
<div class="bg-blue-900 border-y border-steel-blue-600 absolute top-0 bottom-0 w-screen -z-10 right-[100%]"></div> | ||
<div class="bg-blue-900 border-y border-steel-blue-600 absolute top-0 bottom-0 w-screen -z-10 left-0"></div> | ||
</td> | ||
<td class="py-3"> | ||
<div class="flex items-center"> | ||
<a href="#" class="mx-2 hover:text-gray-200"><</a> | ||
<span class="mx-2">1</span> | ||
<a href="#" class="mx-2 hover:text-gray-200">2</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">3</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">4</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">5</a> | ||
<a href="#" class="mx-2 hover:text-gray-200">></a> | ||
</div> | ||
</td> | ||
</tr> | ||
</tfoot> | ||
</table> | ||
</div> | ||
</div> | ||
<router-outlet></router-outlet> |
2 changes: 1 addition & 1 deletion
2
src/angular/hq/src/app/psr/psrdetails/psrdetails.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters