28 lines
681 B
HTML
28 lines
681 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
List of bundle
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>bundle</h1>
|
||
|
<div class="mb-10">
|
||
|
{% for item in items %}
|
||
|
<div class="mb-5">
|
||
|
<div>
|
||
|
<label><b>{{"name" | capitalize }}:</b> {{item.name}}</label>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label><b>{{"description" | capitalize }}:</b> {{item.description}}</label>
|
||
|
</div>
|
||
|
<a href="/bundles/{{ item.id }}/edit">Edit</a>
|
||
|
<a href="/bundles/{{ item.id }}">View</a>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
|
||
|
<br />
|
||
|
<br />
|
||
|
<a href="/bundles/new">New bundle</a>
|
||
|
</div>
|
||
|
{% endblock content %}
|