mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 05:07:50 +02:00
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<div class="col">
|
|
<div class="card shadow-sm">
|
|
<div class="card-body">
|
|
<p class="card-text"><strong>{{ d.item }}</strong></p>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2" scope="row">Scale</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th class="w-33" scope="row">Name</th>
|
|
<td>{{ d.item.scale }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="w-33" scope="row">Ratio</th>
|
|
<td>{{ d.item.ratio }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="w-33" scope="row">Tracks</th>
|
|
<td>{{ d.item.tracks }} mm</td>
|
|
</tr>
|
|
<tr>
|
|
<th class="w-33" scope="row">Gauge</th>
|
|
<td>{{ d.item.gauge }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="d-grid gap-2 mb-1 d-md-block">
|
|
<a class="btn btn-sm btn-outline-primary" href="{% url 'filtered' _filter="scale" search=d.item.slug %}">Show all rolling stock</a>
|
|
{% if request.user.is_staff %}<a class="btn btn-sm btn-outline-danger" href="{% url 'admin:metadata_scale_change' d.item.pk %}">Edit</a>{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|