{% extends 'projects/stage_base.html' %} {% load humanize %} {% load sekizai_tags %} {% load staticfiles %} {% block stage_breadcrumb_links %}
  • {{ stage.name }}
  • Deployment started {{ object.date_created|naturaltime }}
  • {% endblock stage_breadcrumb_links %} {% block content %}

    Deployment started {{ object.date_created|naturaltime }}


    Comments
    {{ object.comments }}
    Date Started
    {{ object.date_created }}
    Deployer
    {{ object.user.email }}
    Project
    {{ object.stage.project.name }}
    Stage
    {{ object.stage.name }}
    Task
    {{ object.task.name }}
    Task Description
    {{ object.task.description|linebreaksbr }}
    {% if object.status == object.PENDING %} Status: Working {% elif object.status == object.SUCCESS %} Status: Success! {% else %} Status: Failed! {% endif %}
    {% block output %} {% if object.status == object.PENDING %} {% else %}
    {{ object.output }}
    {% endif %} {% endblock %}
    {% addtoblock "js" %} {% block deployment_scripts %} {% endblock %} {% endaddtoblock %} {% endblock content %}