nixin-farm/nixin_farm_ssr/assets/views/bundle/show.html

20 lines
430 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}
View bundle: {{ item.id }}
{% endblock title %}
{% block content %}
<h1>View bundle: {{ item.id }}</h1>
<div class="mb-10">
<div>
<label><b>{{"name" | capitalize }}:</b> {{item.name}}</label>
</div>
<div>
<label><b>{{"description" | capitalize }}:</b> {{item.description}}</label>
</div>
<br />
<a href="/bundles">Back to bundles</a>
</div>
{% endblock content %}