configuration.html 545 B

1234567891011121314151617181920
  1. {% extends "basebuildpage.html" %}
  2. {% block pagetitle %}Configuration{% endblock %}
  3. {% block pagetable %}
  4. <tr>
  5. <th>Name</th>
  6. <th>Value</th>
  7. <th>Description</th>
  8. </tr>
  9. {% for variable in configuration %}
  10. <tr class="data">
  11. <td>{{variable.variable_name}}</td>
  12. <td>{{variable.variable_value}}</td>
  13. <td>{% if variable.description %}{{variable.description}}{% endif %}</td>
  14. {% endfor %}
  15. {% endblock %}