32 lines
880 B
HTML
32 lines
880 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
{% macro line(header, cell) -%}
|
||
|
<tr>
|
||
|
<th>
|
||
|
{{ header }}
|
||
|
</th>
|
||
|
<td>
|
||
|
{{ cell }}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{%- endmacro %}
|
||
|
|
||
|
{% block body %}
|
||
|
{{ service_warning() }}
|
||
|
|
||
|
<div class="table-responsive">
|
||
|
<table class="table table-striped table-bordered table-condensed">
|
||
|
{{ line('Reifenluftdruck (vorne)', '1,75 - 2,0 Bar') }}
|
||
|
{{ line('Reifenluftdruck (hinten)', '2,0 - 2,25 Bar') }}
|
||
|
{{ line('Scheinwerfer', '12V 35/35W HS1-Halogen-Glühlampe') }}
|
||
|
{{ line('Standlicht', '12V 5W Glassockel 9mm') }}
|
||
|
{{ line('Blinker vorne', '12V 10W Stecksockel 15mm') }}
|
||
|
{{ line('Rück-/Bremslicht', '12V/21/5W Stecksockel 15mm') }}
|
||
|
{{ line('Blinker hinten', '12V 10W Stecksockel 15mm') }}
|
||
|
{{ line('Tankinhalt', 'ca. 6,0 L') }}
|
||
|
{{ line('Motoröl', 'SAE 15W40') }}
|
||
|
{{ line('Getriebeöl', 'SAE 80/90 (0,12/0,09') }}
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|