{# -*- mode: web; -*- #} {% extends "base.html" %} {% block title %} {% if current_user.is_authenticated %} Welcome, {{ user.name_first }} {{ user.name_last }}! {% else %} Welcome to the ERP for the FAPG! {% endif %} {% endblock %} {% block actions %}
  • Download database
  • {% endblock %} {% block content %}

    Available modules

    {% for module in modules %}
    {% if current_user.is_authenticated %} {# Send to actual module page #} {{ module.name }} {% else %} {# Send to module promo section #} {{ module.name }} {% endif %}
    {{ module.description }}
    {% endfor %}
    {% endblock %}