{% extends "core/base.html" %} {% block content %}
{% csrf_token %}
Sign Guestbook

{% for post in posts %} {% autoescape off %} {{ post.user_message }} - {{ post.first_name }} {% endautoescape %} {% endfor %}

{% endblock %}