-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from wasi0013/v0.0.10
V0.0.10
- Loading branch information
Showing
5 changed files
with
111 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Invoice</title> | ||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.15/dist/tailwind.min.css" rel="stylesheet"> | ||
</head> | ||
<body class="font-sans bg-gray-100"> | ||
<div class="container mx-auto py-8"> | ||
<div class="bg-white rounded-lg shadow-lg p-8"> | ||
<div class="flex justify-between"> | ||
<div class="flex items-center"> | ||
<img src="/home/wasi/.pytm/invoice-logo.png" width=150 alt="Wasi" class="h-12 mr-4" style="height:auto;"> | ||
<div> | ||
<h1 class="text-2xl font-semibold">Wasi</h1> | ||
<p>Chittagong, Bangladesh.</p> | ||
<p>say@hellowasi.com</p> | ||
<p>+8801858503621</p> | ||
<p>wasi0013.com</p> | ||
</div> | ||
</div> | ||
<div class="text-right"> | ||
<p class="text-sm">Invoice 16</p> | ||
<p class="text-sm">Date: 2023-11-03</p> | ||
<h2 class="font-semibold">Bill to</h2> | ||
<p>Anonymous Client</p> | ||
<p>earth</p> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
<div class="text-left mb-4"> | ||
<h1 class="text-2xl font-semibold">Project: Hello World!</h1> | ||
<p>Date: 2023-11-03</p> | ||
<p>Duration: 02 mins 27 secs</p> | ||
</div> | ||
<div class="mt-4"> | ||
<table class="w-full border-collapse border border-gray-300"> | ||
<thead> | ||
<tr> | ||
<th class="p-2 border border-gray-300">Task</th> | ||
<th class="p-2 border border-gray-300">Description</th> | ||
<th class="p-2 border border-gray-300">Hours</th> | ||
<th class="p-2 border border-gray-300">Hourly Rate</th> | ||
<th class="p-2 border border-gray-300">Fee</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
|
||
<tr> | ||
<td class="p-2 border border-gray-300">Todo</td> | ||
<td class="p-2 border border-gray-300">-</td> | ||
<td class="p-2 border border-gray-300">0.38</td> | ||
<td class="p-2 border border-gray-300">75.00$</td> | ||
<td class="p-2 border border-gray-300">28.68</td> | ||
</tr> | ||
<tr> | ||
<td class="p-2 border border-gray-300">Running</td> | ||
<td class="p-2 border border-gray-300">-</td> | ||
<td class="p-2 border border-gray-300">0.03</td> | ||
<td class="p-2 border border-gray-300">75.00$</td> | ||
<td class="p-2 border border-gray-300">1.94</td> | ||
</tr> | ||
|
||
</tbody> | ||
</table> | ||
</div> | ||
<div class="mt-4"> | ||
<div class="flex justify-end"> | ||
<div class="w-1/2"> | ||
<table class="w-full"> | ||
<tr> | ||
<td class="py-1">Subtotal:</td> | ||
<td class="text-right py-1">30.62$</td> | ||
</tr> | ||
<tr> | ||
<td class="py-1">Discount:</td> | ||
<td class="text-right py-1">0.00$</td> | ||
</tr> | ||
<tr> | ||
<td class="py-1"><strong>Total:</strong></td> | ||
<td class="text-right py-1">30.62$</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="mt-4"> | ||
<p class="text-left text-sm">Thank you for your business.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</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,3 +1,3 @@ | ||
__author__ = "Wasi" | ||
__email__ = "wasi0013@gmail.com" | ||
__version__ = "0.0.9" | ||
__version__ = "0.0.10" |
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