{% extends 'base.html' %}{% block content %}

Pojazdy

Dodaj pojazd

{% if current_user.role in ['boss','admin'] %}
{% endif %}
{% for v in vehicles %}

{{v.name}}

{{v.make}} {{v.model}} · {{v.registration}}
{{v.fuel_type}} · {{v.current_odometer}} km{% if v.fuel_card %} · karta {{v.fuel_card.name}}{% endif %}
Właściciel: {{v.owner.name}}
{% if current_user.role in ['boss','admin'] or v.owner_id==current_user.id %}

Udostępnienia

{% for driver in v.drivers %}
{% else %}Nikomu nie udostępniono.{% endfor %}
{% endif %}
{% else %}
Brak pojazdów.
{% endfor %}
{% endblock %}