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

Feed{{ paginator.count|pluralize }} ({{ paginator.count }})

{% url 'probes:create_feed' as url %} {% button 'CREATE' url "Create new Feed" %}
{% if object_list %} {% pagination next_url previous_url %} {% for feed in object_list %} {% endfor %}
Name Created at Updated at
{{ feed.name }} {{ feed.created_at }} {{ feed.updated_at }}
{% pagination next_url previous_url %} {% else %} {% url 'probes:create_feed' as link %} {% no_entities 'Feeds' link %} {% endif %} {% endblock %}