{% extends "projects/base.html" %}
{% load projects_tags %}
{% block body_class %}project_detail{% endblock %}
{% block title %}{{ project.name }}{% endblock %}
{% block content-header %}
{% include "projects/partials/header.html" with overview_active="active" %}
{% endblock %}
{% block content %}
{% comment %}
TODO This section should probably be sidebar content somewhere
{% if onboard %}
{% include 'projects/onboard_detail.html' %}
{% endif %}
{% endcomment %}
{% include "builds/partials/version_list.html" with objects=versions %}
{% endblock %}