{% extends 'base.html' %} {% load ui_extras %} {% block content %}

{{ feed.name }}

Feed

{% if perms.probes.update_feed or perms.probes.delete_feed %}
{% if perms.probes.change_feed %} {% url 'probes:update_feed' feed.id as url %} {% button 'UPDATE' url "Edit Feed" %} {% endif %} {% if perms.probes.delete_feed %} {% url 'probes:delete_feed' feed.id as url %} {% button 'DELETE' url "Delete Feed" %} {% endif %}
{% endif %}
{% if feed.description %} {% endif %}
Attribute Value
description{{ feed.description|linebreaks }}
created at{{ feed.created_at }}
updated at{{ feed.updated_at }}
last synced at{{ feed.last_synced_at|default:"-" }}

Probe{{ active_probes|length|pluralize }} ({{ active_probes|length }})

{% for feed_probe in active_probes %} {% endfor %}
Model Name Description
{{ feed_probe.get_model_display }} {% if perms.probes.view_probesource %} {{ feed_probe }} {% else %} {{ feed_probe }} {% endif %} {{ feed_probe.description|linebreaks }}
{% endblock %}