{% extends "reports/base_report.html" %} {% import '_macros/activity_log.html' as activity_log %} {% set page_title = 'The activity log for blueprint "' + blueprint.title + '"' %} {% block content %}

Blueprint “{{ blueprint.title }}”

Name: {{ blueprint.name }}
URL: {% if blueprint.web_link %} {{ blueprint.web_link }} {% else %} https://blueprints.launchpad.net/{{ blueprint.module }}/+spec/{{ blueprint.name }} {% endif %}
Module: {{ blueprint.module_link | safe }}
Status: {{blueprint.lifecycle_status}}
Priority: {{blueprint.priority}}
Definition Status: {{blueprint.definition_status}}
Implementation Status: {{blueprint.implementation_status}}
Direction: {% if blueprint.direction_approved %} Approved {% else %} Needs Approval {% endif %}
Registered By: {{ blueprint.author_link | safe }} ({{ blueprint.company_link | safe }})
Registered On: {{ blueprint.date_str }}
{% if blueprint.mention_count %}
Popularity: mentioned {{blueprint.mention_count}} times, last on {{blueprint.mention_date_str}}
{% endif %} {% if blueprint.specification_url %}
Specification: {{ blueprint.specification_url }}
{% endif %} {% if blueprint.summary %}

Summary

{{ blueprint.summary | safe }}
{% endif %} {% if blueprint.whiteboard %}

Whiteboard

{{ blueprint.whiteboard }}
{% endif %} {{ activity_log.show_activity_log(blueprint_id=blueprint.id, gravatar_size=64) }} {% endblock %}