diff options
author | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-01 01:16:38 +0000 |
---|---|---|
committer | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-01 01:16:38 +0000 |
commit | ac5b087ea2d9ba7428d367aaeb288534158fee9a (patch) | |
tree | 2dbe0bdea0b653a215ba9ddfdf627cb57855050d /templates/Swedish-timecard.html |
Initial Import
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/ledger-smb@1 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'templates/Swedish-timecard.html')
-rwxr-xr-x | templates/Swedish-timecard.html | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/templates/Swedish-timecard.html b/templates/Swedish-timecard.html new file mode 100755 index 00000000..e9e0b7e2 --- /dev/null +++ b/templates/Swedish-timecard.html @@ -0,0 +1,146 @@ +<body bgcolor=ffffff>
+
+<table width=100%>
+ <tr>
+ <td width=10> </td>
+
+ <td>
+ <table width=100%>
+ <tr>
+ <td>
+ <h4>
+ <%company%>
+ <br><%address%>
+ </h4>
+ </td>
+
+ <th><img src="sql-ledger.png" border=0 width=84 height=58></th>
+
+ <td align=right>
+ <h4>
+ Tel: <%tel%>
+ <br>Fax: <%fax%>
+ </h4>
+ </td>
+ </tr>
+
+ <tr>
+ <th colspan=3>
+ <hr noshade><br>
+ <h4>T I D K O R T</h4>
+ </th>
+ </tr>
+ </table>
+ </td>
+ </tr>
+
+ <tr>
+ <td> </td>
+
+ <td>
+ <table width=100% callspacing=0 cellpadding=0>
+ <tr valign=top>
+ <td>
+ <table>
+ <tr>
+ <th align=left>Anställd</th>
+ <td><%employee%></td>
+ </tr>
+ <tr>
+ <th align=left>ID</th>
+ <td><%employee_id%></td>
+ </tr>
+ </table>
+ </td>
+
+ <td align=right>
+ <table>
+ <tr>
+ <th align=left nowrap>Kort ID</th>
+ <td><%id%></td>
+ </tr>
+ <tr>
+ <th align=left nowrap>Arbetat Datum</th>
+ <td><%transdate%></td>
+ </tr>
+ <tr>
+ <th align=left nowrap>Tid In</th>
+ <td><%checkedin%></td>
+ </tr>
+ <tr>
+ <th align=left>Tid Ut</th>
+ <td><%checkedout%></td>
+ </tr>
+ <tr>
+ <th align=left nowrap>Timmar</th>
+ <td><%qty%></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+
+ <tr height=5></tr>
+
+ <tr>
+ <td> </td>
+
+ <td>
+ <table width=100%>
+ <tr valign=bottom>
+ <td>
+ <table>
+ <tr valign=top>
+ <th align=left>Project/Jobb #</th>
+ <td><%projectnumber%></td>
+ </tr>
+ <tr>
+ <th align=left>Beskrivning</th>
+ <td><%projectdescription%></td>
+ </tr>
+ <tr valign=top>
+ <th align=left>Arbets/Service kod</th>
+ <td><%partnumber%></td>
+ </tr>
+ <tr>
+ <th align=left>Beskrivning</th>
+ <td><%description%></td>
+ </tr>
+ </table>
+ </td>
+ <td align=right>
+ <table>
+ <tr>
+ <th align=right>Enhets Pris</th>
+ <td><%sellprice%></td>
+ </tr>
+ <tr>
+ <th align=right>Totalt</th>
+ <td><%total%></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+
+<%if notes%>
+ <tr height=5></tr>
+
+ <tr>
+ <td> </td>
+
+ <td>
+ <%notes%>
+ </td>
+ </tr>
+<%end notes%>
+
+</table>
+
+</body>
+</html>
+
|