summary refs log tree commit diff stats
path: root/theme/admin/managePendingQuotes.tpl
blob: e993aae3eae877b66378305092e134f5200d29d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<h2>Manage Pending Quotes</h2>

<table width="100%" class="webmail">
	<tr>
		<th>Quote</th>
		<th>Actions</th>
	</tr>

	<!--BEGIN QUOTE-->
	<tr class="<!--QUOTE.EVEN-->">
		<td><!--QUOTE.TEXT--></td>

		<td>
			<a href="/admin/actionPendingQuotes.php?id=<!--QUOTE.ID-->&amp;approve"><img src="/theme/images/icons/page_attach.png" alt="Approve" /></a>
			<a href="/admin/actionPendingQuotes.php?id=<!--QUOTE.ID-->&amp;deny"><img src="/theme/images/icons/page_delete.png" alt="Deny" /></a>
		</td>
	</tr>
	<!--END QUOTE-->
</table>

<a href="/admin/">Back to Admin Panel</a>