{% extends "base.html" %} {% load lexbuilder_helpers %} {% block header_css %} {% endblock %} {% block header_js %} {% endblock %} {% block title %} Project Details for {{project.title|capfirst}} {% endblock %} {% block content %}
Project Title:
{{project.title}}
Codename:
{{project.name}}
Owner:
{{project.owner.get_full_name}}
Group:
{%if project.project_group%} {{project.project_group.title}}{%else%}None{%endif%}
Active:
Active{% else %}"color: #CF4545;">Inactive{% endif %}
Project Status:
{{project.get_status_display|default_if_none:"Unknown"}}
Build Status:
{% if project.builder %} Currently building on {{ project.builder.name }} {% else %}{% if project_needs_build %}Pending Build{% else %}{% if project.latest_build_date %}{{project.latest_build.result}} {{project.latest_build_date|default:""|date:"M d Y H:m:s"}}{% else %}No build records available.{% endif %}{% endif %}{% endif %}
Launchpad Project:
{%if project.launchpad_project%}{{ project.launchpad_project }}{%else%}None{%endif%}
Architecture:
{{project.arch}}
Based on:
{{ project.series|capfirst }}
Config URL:
{{ project.config_url }}
{% if project.is_private %}
{% if project.access_groups.all.count %}
This project is visible only to its owner and the following users:
    {% for user in project.access_groups.all.0.members.all %}
  • {% if user.get_full_name %} {{ user.get_full_name }} {% else %} {{ user.username }} {% endif %} ({{ user.email }})
  • {% endfor %}

Allow more users to see this project

{% else %}
This project is visible only to its owner.

Allow more users to see this project

{% endif %}
{% endif %}
{% if project.notes %}

Notes: {{project.notes|default:""}}

{% endif %} {% if build_stats.pie_chart %}

{% endif %} {% endwith %} {% endblock %} {% block two-columns %} {% endblock %} {% block sidebar-failedbuilds %} {% endblock %}