26 lines
510 B
HTML
26 lines
510 B
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link rel="stylesheet" href="{% static 'vehicles/style.css' %}">
|
|
</head>
|
|
<body>
|
|
<div class="main_container">
|
|
{% for vhc in list_vhc %}
|
|
{% with 'vehicles/images/ocvs_rtw_'|add:vhc.nStatus|add:'.png' as image_static %}
|
|
<div class="child">
|
|
<img width="350px" src="{% static image_static %}" >
|
|
{{vhc.sName}}
|
|
|
|
|
|
|
|
</div>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |