{% extends "reports/base_report.html" %} {% import '_macros/activity_log.html' as activity_log %} {% block title %} Blueprint “{{ blueprint.title }}” report {% endblock %} {% block content %}

Blueprint “{{ blueprint.name }}”

Title: {{ blueprint.title }}
URL: https://blueprints.launchpad.net/{{ blueprint.module }}/+spec/{{ blueprint.name }}
Module: {{blueprint.module}}
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_name}} ({{ blueprint.company_name }})
Registered On: {{blueprint.date_str}}
{% if blueprint.mention_count %}
Popularity: mentioned {{blueprint.mention_count}} times, last on {{blueprint.mention_date_str}}
{% 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 %}