scrutiny/scrutiny/projects/templates/projects/modules.html

19 lines
344 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "scrutiny/base.html" %}
{% block appbar %}
<h2>Available modules</h2>
{% endblock %}
{% block content %}
<div>
<ul>
{% for module in modules %}
<li>{{ module.name }} : <a href="{{ module.name }}/">deployments</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}
{% block page-end %}
{% endblock %}