Start content
This commit is contained in:
19
shimatta_kenkyusho/templates/parts/stocks-detail.html
Normal file
19
shimatta_kenkyusho/templates/parts/stocks-detail.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load qr_code %}
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb" class="fs-4">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"></li>
|
||||
{% for crumb in breadcrumbs %}
|
||||
<li class="breadcrumb-item"><a href="{% url 'parts-stocks-detail' uuid=crumb.id %}">{{crumb.name}}</a></li>
|
||||
{% endfor %}
|
||||
<li class="breadcrumb-item active" aria-current="page">{{object.name}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
<h1>Stocks in {{object.get_full_path }}</h1>
|
||||
{% qr_from_text object.get_qr_code size="m" image_format="svg" %}
|
||||
|
||||
</div>
|
||||
{% endblock content %}
|
Reference in New Issue
Block a user