{% extends "base.html" %} {% load static %} {% block title %}{{ object.name }} - Analytics Metrics{% endblock %} {% block content %}
| Name: | {{ object.name }} |
| Description: | {{ object.description|default:"No description" }} |
| Category: | {{ object.get_category_display }} |
| Current Value: | {% if object.current_value is not None %} {{ object.current_value }}{% if object.unit %} {{ object.unit }}{% endif %} {% else %} No data available {% endif %} |
| Target: | {% if object.target_value is not None %} {% if object.target_direction == 'HIGHER' %}↑{% else %}↓{% endif %} {{ object.target_value }}{% if object.unit %} {{ object.unit }}{% endif %} {% else %} No target set {% endif %} |
| Status: | {{ object.get_status_display }} |
| Frequency: | {{ object.get_update_frequency_display }} |
| Last Updated: |
{% if object.last_updated %}
{{ object.last_updated|date:"M d, Y H:i" }}
{{ object.last_updated|timesince }} ago {% else %} Never updated {% endif %} |
| Created: | {{ object.created_at|date:"M d, Y" }} |
| Created By: | {{ object.created_by.get_full_name|default:"System" }} |
{{ object.sql_query }}
| Date | Value | Change | Updated By |
|---|---|---|---|
| {{ update.created_at|date:"M d, Y H:i:s" }} | {{ update.value }}{% if object.unit %} {{ object.unit }}{% endif %} | {% if update.change %} {% if update.change > 0 %}+{% endif %}{{ update.change|floatformat:2 }} {% else %} - {% endif %} | {{ update.updated_by.get_full_name|default:"System" }} |
No update history found for this metric.
No alerts configured.