{#
This template extends the layout.html template to 
display the messages. 
#}

{% extends "layout.html" %}
{% block body %}
  <ul class=entries>
  {% if session.logged_in %}
    <li><h2>{{ entry.title }}</h2>{{ entry.Urms }}{{ entry.Irms }}{{ entry.Prms }}
  {% else %}
    <li><em>You have to be logged in before data can be read!</em>
  {% endif %}
{% endblock %}