{% extends "master.html" %} {% load help %} {% load comments %} {% load humanize %} {% block title %} - Welcome{% endblock %} {% block javascript %} {{ block.super }} {% endblock %} {% block content %} {% include "ie6warning.html" %}
{% if records %}
{% for record in records %} {% endfor %}
{% for record in records %}
{{ record.alt_text }}
{% endfor %}
Load new images
{% with records.0.collection_set.all.0 as collection %}
{{ records.0.title }}
{{ collection.title }}
{% endwith %} {% endif %}
{% if not user.is_authenticated %} {% if SHOW_FRONTPAGE_LOGIN|default:"yes" != "no" %}

Log in

{% if SHIB_ENABLED %}
Please log in using Shibboleth
{% else %} {% if CAS_SERVER_URL %}
Please log in using CAS
{% else %}
{% csrf_token %}
{{ login_form.username.label_tag }}{{ login_form.username }}
{{ login_form.password.label_tag }}{{ login_form.password }}

{% endif %} {% endif %} {% endif %} {% else %}

Welcome{% if user.first_name %}, {{ user.first_name }}{% endif %}

{% endif %}

Announcements

{% if perms.comments.add_comment %}
Create new announcement
{% endif %} {% get_comment_list for flatpages.flatpage 1 as comments %} {% for comment in comments reversed %} {{ comment.comment|safe|linebreaks }} {% endfor %}
{% endblock %}