12 lines
No EOL
380 B
HTML
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 %} |