[Flask] Simple ERP for a farm.
1
{# -*- mode: web; -*- #}
2
3
{% extends "base.html" %}
4
5
{% block title %}
6
{% if current_user.is_authenticated %}
7
Welcome, {{ user.name_first }} {{ user.name_last }}!
8
{% else %}
9
Welcome to the ERP for the FAPG!
10
{% endif %}
11
{% endblock %}
12
13
{% block actions %}
14
<li><ahref="{{ url_for('main.download_database') }}"class="button">Download database</a></li>
15
{% endblock %}
16
17
{% block content %}
18
<h2>Available modules</h2>
19
<dl>
20
{% for module in modules %}
21
<dt>
22
{% if current_user.is_authenticated %}
23
{# Send to actual module page #}
24
<ahref="/modules/{{ module.name }}">{{ module.name }}</a>
25
{% else %}
26
{# Send to module promo section #}
27
<ahref="/modules#{{ module.name }}">{{ module.name }}</a>
28
{% endif %}
29
</dt>
30
<dd>{{ module.description }}</dd>
31
{% endfor %}
32
</dl>
33
34
{% endblock %}
35