Added inventory view and challenge blurb + recurring field

This commit is contained in:
teras
2017-12-02 22:26:04 +02:00
parent 2eb090d16c
commit 305ff7b192
5 changed files with 51 additions and 6 deletions

37
templates/inventory.html Normal file
View File

@@ -0,0 +1,37 @@
{% extends 'base.html' %}
{% block content %}
<div class="row container">
<div class="section slogan">
<h2 class="center-align" style="font-weight:bold">Inventory<br></h2>
</div>
</div>
<div class="row container challenges">
<div class="row">
{% for item in inventory %}
<div class="col s12 m3">
<div class="card" style="height:350px;">
<div class="card-content">
<div class="row" style="height:210px;">
<div class="col s12 m12">
<div class="card-title"><b>{{ item.item_name }}</b></div>
<p>Serial: {{ item.serial_nr }}</p>
<p style="text-align: justify; max-height: 120px; overflow: auto;">{{ item.description }}</p>
<div class="card-image">
{% if item.photo %}
<img src='/media/{{ item.photo }}'>
{% else %}
<img src='/media/missing_photo.png'>
{% endif %}
</div>
</div>
</div>
</br>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}