Files
pillar/attract/application/templates/shots/view.html

23 lines
428 B
HTML
Raw Normal View History

2014-04-20 12:09:16 +02:00
{% extends 'layout.html' %}
{% block body %}
<div class="col-md-9">
<h2>{{shot['name']}}</h2>
<div class="row">
<div class="col-md-6">
<p>Picture goes here</p>
</div>
<div class="col-md-6">
<p>{{shot['description']}}</p>
2015-02-01 17:56:09 +00:00
<p>
{% if notes %}
{{notes}}
{% else %}
No notes at the moment
{% endif %}
</p>
2014-04-20 12:09:16 +02:00
</div>
</div>
</div>
{% endblock %}