19 lines
430 B
HTML
19 lines
430 B
HTML
{% 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 %}
|