{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load i18n %} {% block content %}
{% trans "Splice Project" %}
{% trans "Name" %} {{ object.name }}
{% if object.description %}
{% trans "Description" %}
{{ object.description|markdown }}
{% endif %}
{% trans "Splice Plans" %}
{% render_table plans_table %}
{% plugin_full_width_page object %} {% endblock %}