templates/vehicle/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Service manuals for {{ vehicle.getNameForTitle() }}{% endblock %}
  3. {% block body %}
  4.     <h3><a href="{{ vehicle.getSeoUrl() }}/bulletins">Technical Service Bulletins</a></h3>
  5.     {% if showDtc %}
  6.     <h3><a href="{{ vehicle.getSeoUrl() }}/dtc">Diagnostic Trouble Codes</a></h3>
  7.     {% endif %}
  8.     {% for bookType in books_and_sections %}
  9.         <h3>{{ bookType[0]['book_type_desc'] }}</h3>
  10.         <ul>
  11.         {% for section in bookType %}
  12.             <li><a href="{{ vehicle.getSeoUrl() }}/{{ section['book_id'] }}/{{ section['sec_id'] }}">{{ section['comp_sec_title'] }}</a></li>
  13.         {% endfor %}
  14.         </ul>
  15.     {% endfor %}
  16.     <div class="download">
  17.         You can <a href="/dumps/{{ vehicle.getFullDownloadKey() }}.7z">download an offline copy</a> of all documents for this model
  18.     </div>
  19. {% endblock %}