mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- This fixes a regression in showing menu items on the help:index page. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
36 lines
863 B
HTML
36 lines
863 B
HTML
{% extends 'base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block body_class %}system-page{% endblock %}
|
|
|
|
{% block container %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 offset-lg-2">
|
|
{% include 'messages.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container card-container">
|
|
{% for section_item in menu_items %}
|
|
<div class="system-section-title">{{ section_item.name }}</div>
|
|
<div class="row">
|
|
<div class="card-list card-list-primary">
|
|
{% for item in section_item.sorted_items %}
|
|
{% if advanced_mode or not item.advanced %}
|
|
{% include "card.html" %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endblock %}
|