Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.html 342B

1234567891011121314151617
  1. {% load i18n %}
  2. <table>
  3. <thead>
  4. <tr>
  5. <th>{% trans "Setting" %}</th>
  6. <th>{% trans "Value" %}</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. {% for name, value in settings.items %}
  11. <tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">
  12. <td>{{ name }}</td>
  13. <td><code>{{ value|pprint }}</code></td>
  14. </tr>
  15. {% endfor %}
  16. </tbody>
  17. </table>