View file store/templates/store/includes/history.html

File size: 1.72Kb
<div class="verf-active">
    <div class="valign pg_page_title">
        <h4><span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M13.5,8H12V13L16.28,15.54L17,14.33L13.5,12.25V8M13,3A9,9 0 0,0 4,12H1L4.96,16.03L9,12H6A7,7 0 0,1 13,5A7,7 0 0,1 20,12A7,7 0 0,1 13,19C11.07,19 9.32,18.21 8.06,16.94L6.64,18.36C8.27,20 10.5,21 13,21A9,9 0 0,0 22,12A9,9 0 0,0 13,3"></path></svg></span>{{LANG history}}</h4>
		<span>{{LANG total_sell}} : <?php echo $context['currency_symbol'] . $context['total_sell'];?></span>
    </div>
    <form class="form pg_page">
		<div class="table-responsive pp_store_tratale">
			<table class="table">
				<thead>
                    <tr>
                        <th>{{LANG image}}</th>
                        <th>{{LANG buyer}}</th>
                        <th>{{LANG price}}</th>
						<th>{{LANG admin_commission}}</th>
						<th>{{LANG net_earning}}</th>
                        <th>{{LANG date}}</th>
                    </tr>
				</thead>
				<tbody id="user-ads">
					<?php
						if($context['transactions']){
							foreach ($context['transactions'] as $key => $context['transaction']) {
								include 'history_list.html';
							}
						}else{
							echo '<tr><td class="empty_state" style="padding: 60px 10px;" colspan="6"><span><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="currentColor" d="M19 22H5a3 3 0 0 1-3-3V3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v12h4v4a3 3 0 0 1-3 3zm-1-5v2a1 1 0 0 0 2 0v-2h-2zM6 7v2h8V7H6zm0 4v2h8v-2H6zm0 4v2h5v-2H6z"></path></svg></span><p>{{LANG No sale history found.}}</p></td></tr>';
						}
					?>
				</tbody>
			</table>
		</div>
    </form>
</div>