{% extends "base.html" %} {% block content %} {{ super() }}

Patched modules

{% if modules | length > 0 %}

This table lists the modules recipy has patches for, and the input and output functions that are patched.

{% for mod in modules %} {% endfor %}
Module Input functions Output functions
{{ mod.modulename }} {% if mod.input_functions | length > 0 %} {{ mod.input_functions|join(', ')|safe }} {% endif %} {% if mod.output_functions | length > 0 %} {{ mod.output_functions|join(', ')|safe }} {% endif %}
{% else %} No patched modules found. Please import recipy to register available patches. {% endif %}
{% endblock %}