salvagedb_web/templates/search.html
2024-11-28 12:19:28 +03:00

107 lines
3.8 KiB
HTML

{% extends "head.html" %}
{% block content %}
<div class="container">
<div class="hero-unit">
<h1>Buying a Used Car? Check it!</h1>
<br>
<p><a href="https://www.salvagedb.com/" title="Salvagedb.com" rel="nofollow">Salvagedb.com</a> provides
information about salvage or junk vehicles; damage from hail, flood or fire; mileage discrepancies or
odometer rollback; and gray market vehicles. We do not claim that the car got in our databank has salvage
title, but the fact that it has been damaged for sure. Our site helps people avoid buying a damaged vehicle
in the past.
</p></div>
<div class="wrapper">
<center>
<br>
<table border="0">
<tr>
<td>
<div class="span4">
</div>
</td>
<td>
<table id="one-column-emphasis" style="font-size: 16px;">
<tbody>
<tr>
<td>Make</td>
<td>{{det[0][1]}}</td>
</tr>
<tr>
<td>Model</td>
<td>{{det[0][2]}}</td>
</tr>
<tr>
<td>Year</td>
<td>{{det[0][3]}}</td>
</tr>
<tr>
<td>Body Style</td>
<td>{{det[0][4]}}</td>
</tr>
<tr>
<td>Engine</td>
<td>{{det[0][5]}}</td>
</tr>
<tr>
<td>Cylinders</td>
<td>{{det[0][6]}}</td>
</tr>
<tr>
<td>Drive</td>
<td>{{det[0][7]}}</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
<center>
{% if his %}
<table id="hor-minimalist-a" style="width:900px;font-size: 16px;">
<thead>
<tr>
<th scope="col">VIN</th>
<th scope="col">Title</th>
<th scope="col">Odometer</th>
<th scope="col">Odometer Status</th>
<th scope="col">Primary Damage</th>
<th scope="col">Secondary Damage</th>
</tr>
</thead>
</thead>
<tbody>
{% for it in his%}
<tr>
<td style="color:red">{{it[1]}}</td>
<td style="color:red">{{it[2]}}</td>
<td style="color:red">{{it[3]}}</td>
<td style="color:red">{{it[4]}}</td>
<td style="color:red">{{it[5]}}</td>
<td style="color:red">{{it[6]}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<table border="0">
<tr><td><h1>Salvage history not found.<h1></td></tr>
</table>
{% endif %}
<div style="height: 50px"></div>
</center>
</div>
</div>
<br><br>
<br><br>
{% endblock %}