46 lines
2.0 KiB
HTML
46 lines
2.0 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Invoice requests</title>
|
|
<style>
|
|
table { border-collapse: collapse; }
|
|
th, td { padding: 20px; }
|
|
button { height: 110px; width: 110px;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<br/><br/><br/>
|
|
<table>
|
|
<tr>
|
|
<td><a href="{{ url_for('download')}}"><button type="button">Download Messages</button></a></td>
|
|
<td><a href="{{ url_for('get_invoices')}}"><button type="button">Show Message</button></a></td>
|
|
<td></td>
|
|
<td><a href="{{ url_for('monthlyreport')}}"><button type="button">Monthly Report</button></a></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td><a href="{{ url_for('broken_buyers')}}"><button type="button">Repair Broken Buyers</button></a></td>
|
|
<td><a href="{{ url_for('maintain_csv',csv_file='buyersdata_repaired')}}"><button type="button">Maintain Repaired Buyers</button></a></td>
|
|
<td><a href="{{ url_for('find_rejectedids')}}"><button type="button">Find Rejected Buyers</button></a></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="{{ url_for('maintain_csv',csv_file='stores_to_invoice')}}"><button type="button">Maintain Stores to interface</button></a></td>
|
|
<td><a href="{{ url_for('maintain_csv',csv_file='offices')}}"><button type="button">Maintain Offices</button></a></td>
|
|
<td><a href="{{ url_for('maintain_csv',csv_file='translations')}}"><button type="button">Maintain Translation table</button></a></td>
|
|
<td><a href="{{ url_for('earliestdate')}}"><button type="button">Maintain Earliest process date</button></a></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href="{{ url_for('show_log', loglevel=1)}}"><button type="button">Issue Log</button></a></td>
|
|
<td><a href="{{ url_for('showPoslogs', status=2)}}"><button type="button">Database Tables</button></a></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
</body>
|
|
</html>
|