{% extends 'admin/base_site.html' %} {% block title %}{{ title }}{% endblock title %} {% block content %}

Hardware:

Create Channel:
{% csrf_token %} {% for field in channel_form %}
{{ field }}
{% endfor %}

{% for channel in channels %} {% endfor %}
Serial No. Type Updated At Created At
{{ channel.id }} {{ channel.type }} {{ channel.updated_at }} {{ channel.created_at }}
Create Hardware Config:
{% csrf_token %} {% for field in hardware_config_form %}
{{ field }}
{% endfor %}

{% for config in hardware_configs %} {% endfor %}
ID Type Value Updated At Created At
{{ config.id }} {{ config.type }} {{ config.value }} {{ config.updated_at }} {{ config.created_at }}
{% endblock content %} {% block javascript %} {% endblock javascript %}