Skip to content
Snippets Groups Projects
project_page.html 1.28 KiB
Newer Older
  • Learn to ignore specific revisions
  • {% extends "base.html" %}
    
    {% load wagtailcore_tags wagtailimages_tags %}
    
    
    {% block content %}
        <div class="intro">
            <div class="container">
                {% if page.icon %}
                    {% image page.icon original %}
                {% endif %}
                <h1>{{ page.title }}</h1>
                {% if page.introduction %}
                    <p>{{ page.introduction }}</p>
                {% endif %}
    
                {{ page.body }}
    
                {% with contact_details=page.contact_details.all %}
                    {% if contact_details %}
                        {% for contact in contact_details %}
                    <p><a href="{{ contact.url }}">
                        <span class="icon {{ contact.service }}">{{ contact.service_name }}
                            </a></p>
                        {% endfor %}
    
                    {% endif %}
                {% endwith %}
    
            </div>
        </div>
    
        {% include "utils/includes/funding.html" %}
    
        {% regroup page.category_options by category as categories %}
        {% for category, options in categories %}
        <ul>
            <li><h3>{{ category.name }}</h3>
                <ul>
                    {% for option in options %}
                    <li>{{ option.value }}</li>
                    {% endfor %}
                </ul>
            </li>
        </ul>
        {% endfor %}
    
    
    {% endblock content %}