mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
593 B
22 lines
593 B
15 years ago
|
{% extends "layout.html" %}
|
||
|
{% block body %}
|
||
|
{% if g.logged_in %}
|
||
|
<form action="{{ url_for('add_entry') }}" method=post class=add-entry>
|
||
|
<dl>
|
||
|
<dt>Title:
|
||
|
<dd><input type=text size=30 name=title>
|
||
|
<dt>Text:
|
||
|
<dd><textarea name=text rows=5 cols=40></textarea>
|
||
|
<dd><input type=submit value=Share>
|
||
|
</dl>
|
||
|
</form>
|
||
|
{% endif %}
|
||
|
<ul class=entries>
|
||
|
{% for entry in entries %}
|
||
|
<li><h2>{{ entry.title }}</h2>{{ entry.text|safe }}
|
||
|
{% else %}
|
||
|
<li><em>Unbelievable. No entries here so far</em>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock %}
|