bookie-python/templates/detail.html
2014-10-24 18:34:28 -04:00

12 lines
No EOL
380 B
HTML

{% extends "layout.html" %}
{% block title %} | {{b.short}} Details{% endblock %}
{% block body %}
<p>Title: {{b.title}}</p>
<p>Short: {{b.short}}</p>
<p>URL: {{b.url}}</p>
<p>Note: {{b.note}}</p>
<p>Tags: {% for t in b.tags %}{{t}}, {% endfor %}
<p>Created At {{b.created_at}}</p>
<p>Hits: {{b.hits}}</p>
<p>Factor: {{b.factor}}</p>
{% endblock %}