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

Hardware:

Hardware Config:
{% csrf_token %} {% for field in hardware_form.visible_fields %}
{{ field }}
{% endfor %} {% for field in hardware_form.hidden_fields %} {{ field }} {% endfor %}
Hardware IO Type:
{% csrf_token %} {% for field in hardware_io_type_form.visible_fields %}
{{ field }}
{% endfor %} {% for field in hardware_io_type_form.hidden_fields %} {{ field }} {% endfor %}
Hardware IO Config:
{% csrf_token %} {% for field in hardware_io_form.visible_fields %}
{{ field }}
{% endfor %} {% for field in hardware_io_form.hidden_fields %} {{ field }} {% endfor %}
Create Channel:
{% csrf_token %} {% for field in channel_form.visible_fields %}
{{ field }}
{% endfor %} {% for field in channel_form.hidden_fields %} {{ field }} {% endfor %}

{% for channel in channels %} {% endfor %}
Serial No. Type Updated At Created At
{{ channel.id }} {{ channel.type }} {{ channel.updated_at }} {{ channel.created_at }}
{% load static %} {% static "RaspberryPiPinout.png" as myphoto %} {% if hardware_form.type.value == "Pi" or hardware_form.type.value == "PiPico" %} {% endif %} {% endblock content %} {% block javascript %} {{ block.super }} {% endblock javascript %}