{% extends "base_status.html" %}
{% block title %}{{ contact_name }}{% endblock %}
{% block smallheader %}contact{% endblock %}
{% block largeheader %}{{ contact_name }} ({{ contact.alias }}){% endblock %}
{% block nav1 %}{{ block.super }}{% endblock %}
{% block nav2 %}Contacts{% endblock %}
{% load adagiostags %}
{% block content %}
{% if comments %}
Comments that mention {{ contact_name }}
{% include "snippets/status_commentlist_snippet.html" %}
{% else %}
{{ contact_name }} is not tagged in any current problems.
{% endif %}
{% if log %}
Time |
Type |
|
Message |
{% for line in log %}
{% ifchanged line.time|timestamp|date:"Y-m-d" %}
{% endifchanged %}
{{ line.time|timestamp|date:'Y-m-d H:i' }} |
{{ line.type }} |
|
{{ line.options }} |
{% endfor %}
{% else %}
{{ contact_name }} is not mentioned in any recent log entries.
{% endif %}
{% if services %}
{{ contact_name }} is a contact for the following services:
{% include "snippets/status_servicelist_snippet.html" %}
{% else %}
{{ contact_name }} is not a contact for any services.
{% endif %}
{% if gitlog %}
Git commits made by {{ contact_name }}
Date |
Summary |
Name |
Email |
Actions |
{% for commit in gitlog %}
{{ commit.timestamp|timestamp|date:'Y-m-d H:i'}} |
{{ commit.comment }} |
{{ commit.author_name }} |
{{ commit.author_email }} |
{% if commit_id != commit.hash %}
diff
{% else %}
hide
{% endif %}
|
{% if commit_id == commit.hash %}
{{ diff }}
|
{% endif %}
{% endfor %}
{% else %}
{{ contact_name }} has no commits in git log.
{% endif %}
Information available via livestatus:
{% for k,v in contact.items %}
{{ k }}
|
{{ v }}
|
{% endfor %}
{% endblock %}
{% block view_buttons %}{% endblock %}
{% block action_buttons %}{% endblock %}
{% block footer %} {{ block.super }} {% endblock %}