86 lines
2.7 KiB
Twig
86 lines
2.7 KiB
Twig
<h1>Collection CRUD</h1>
|
|
<div class="top-bar">
|
|
<div class="top-bar-left">
|
|
<ul class="menu">
|
|
<li class="menu-text">Meta</li>
|
|
<li class="{{ route starts with 'brand_' ? 'is-active' }}">
|
|
<a href="{{ path('brand_index') }}">🕺 Brands</a>
|
|
</li>
|
|
<li class="{{ route starts with 'brand-category_' ? 'is-active' }}">
|
|
<a href="{{ path('brand-category_index') }}">💃 Brand Categories</a>
|
|
</li>
|
|
<li class="{{ route starts with 'socket_' ? 'is-active' }}">
|
|
<a href="{{ path('socket_index') }}">📍Sockets</a>
|
|
</li>
|
|
<li class="not-implemented">
|
|
<a href="#">🐏 Ram Types</a>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu">
|
|
<li class="menu-text">Photography</li>
|
|
<li class="{{ route starts with 'camera_' ? 'is-active' }}">
|
|
<a href="{{ path('camera_index') }}">📷 Cameras</a>
|
|
</li>
|
|
<li class="{{ route starts with 'flash_' ? 'is-active' }}">
|
|
<a href="{{ path('flash_index') }}">📸 Flashes</a>
|
|
</li>
|
|
<li class="{{ route starts with 'lens_' ? 'is-active' }}">
|
|
<a href="{{ path('lens_index') }}">🔎 Lenses</a>
|
|
</li>
|
|
|
|
<li hidden>
|
|
<ul>
|
|
<li class="menu-text">Previously Owned</li>
|
|
<li class="{{ route starts with 'previously-owned-camera' ? 'is-active' }}">
|
|
<a href="{{ path('previously-owned-camera_index') }}">📷 Cameras</a>
|
|
</li>
|
|
<li class="{{ route starts with 'previously-owned-flash' ? 'is-active' }}">
|
|
<a href="{{ path('previously-owned-flash_index') }}">📸 Flashes</a>
|
|
</li>
|
|
<li class="{{ route starts with 'previously-owned-lens' ? 'is-active' }}">
|
|
<a href="{{ path('previously-owned-lens_index') }}">🔎 Lenses</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li class="menu-text">Meta</li>
|
|
<li class="{{ route starts with 'film_' ? 'is-active' }}">
|
|
<a href="{{ path('film_index') }}">🎞️ Film</a>
|
|
</li>
|
|
<li class="{{ route starts with 'camera-type_' ? 'is-active' }}">
|
|
<a href="{{ path('camera-type_index') }}">🎥 Camera Types</a>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu">
|
|
<li class="menu-text">Computer Components</li>
|
|
<li class="{{ route starts with 'gpu-core' ? 'is-active' }}">
|
|
<a href="{{ path('gpu-core_index') }}">🌀 GPU Cores</a>
|
|
</li>
|
|
<li class="{{ route starts with 'gpu_' ? 'is-active' }}">
|
|
<a href="{{ path('gpu_index') }}">🎮 Graphics Cards</a>
|
|
</li>
|
|
<li class="not-implemented">
|
|
<a href="#">🧠 CPUs</a>
|
|
</li>
|
|
<li class="not-implemented">
|
|
<a href="#">🧮 FPUs</a>
|
|
</li>
|
|
<li class="not-implemented">
|
|
<a href="#">🤰 Motherboards</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{% for message in app.flashes('notice') %}
|
|
<div class="small callout flash-notice">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% for message in app.flashes('error') %}
|
|
<div class="small callout alert flash-error">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|