{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
Edit Delete

{% block title %}{{ lifecycle }}{% endblock %}

{% include 'inc/created_updated.html' with obj=lifecycle %}
{% custom_links lifecycle %}
{% endblock %} {% block content %}
Lifecycle
Device {% if lifecycle.device %} {{ lifecycle.device }} {% else %} None {% endif %}
Date {{ lifecycle.date|placeholder }}
User {% if lifecycle.user %} {{ lifecycle.user }} {% else %} None {% endif %}
Action type {{ lifecycle.action_type }}
{% include 'inc/custom_fields_panel.html' with obj=lifecycle %} {% include 'extras/inc/tags_panel.html' with tags=lifecycle.tags.all url='plugins:lifecycles:lifecycles' %}
Comments
{% if lifecycle.comments %} {{ lifecycle.comments|render_markdown }} {% else %} None {% endif %}
{% plugin_left_page lifecycle %}
{% plugin_right_page lifecycle %}
{% plugin_full_width_page lifecycle %}
{% endblock %}