{% extends 'base.html' %}
{% block content %}
- Home
- Probes
- Feeds
- {{ feed.name }}
Feed {{ feed.name }}
{% if feed.description %}
| description | {{ feed.description|linebreaks }} |
{% endif %}
| created at | {{ feed.created_at }} |
| updated at | {{ feed.updated_at }} |
| last synced at | {{ feed.last_synced_at|default:"-" }} |
{% if perms.probes.update_feed or perms.probes.delete_feed %}
{% endif %}
{{ active_probes|length }} Probe{{ active_probes|length|pluralize }}
| Model |
Name |
Description |
{% for feed_probe in active_probes %}
| {{ feed_probe.get_model_display }} |
{% if perms.probes.view_probesource %}
{{ feed_probe }}
{% else %}
{{ feed_probe }}
{% endif %}
|
{{ feed_probe.description|linebreaks }} |
{% endfor %}
{% endblock %}