{% extends "meeting-base.html" %} {% block headtitle %}My Notes{% endblock %} {% load staticfiles %} {% block content %}
MY NOTES
{% if not session_notes %}

Sorry, you have not made any notes yet, please view the Programme to add notes.

{% endif %} {% if session_notes %}
Session Notes
{% for note in session_notes %}
{{ note.session }}
{{ note.content|truncatewords:10 }}
{% endfor %}
{% endif %} {% if presentation_notes %}
Presentation Notes
{% for note in presentation_notes %}
{{ note.presentation }}
{{ note.content|truncatewords:10 }}
{% endfor %}
{% endif %} {% if poster_notes %}
Poster Notes
{% for note in poster_notes %}
{{ note.poster }}
{{ note.content|truncatewords:10 }}
{% endfor %}
{% endif %} {% if exhibitor_notes %}
Exhibitor Notes
{% for note in exhibitor_notes %}
{{ note.poster }}
{{ note.content|truncatewords:10 }}
{% endfor %}
{% endif %}
{% endblock %}