ref: canary
core/templates/index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37  | 
{% extends "layout.html" %}
{% block body %}
<h1> Bem vindo a Feira Virtual Bem da Terra! </h1>
<section>
  <p>
    Comércio <strong> justo e solidário </strong>
  </p>
  <ul>
    <li> Trabalho Coletivo </li>
    <li> Auto Gestão </li>
    <li> Consumo Responsável </li>
  </ul>
</section>
<section>
  {% if current_user.is_authenticated %}
    {% if current_user.is_admin() %}
      <h2>Gerenciamento</h2>
      <ul>
        <li> <a href="{{url_for('groups.index')}}">Ver Fornecedores cadastrados </a> </li>
        <li> <a href="{{url_for('products.index')}}">Ver produtos cadastrados </a> </li>
        <li> <a href="{{url_for('product_categories.index')}}">Ver categorias</a> </li>
      </ul>
    {% endif %}
    <ul>
      <li> <a href="{{url_for('cycles.index')}}">Ver ciclos</a> </li>
    </ul>
  {% else %}
    <a href="{{url_for('auth.login')}}">Entrar</a>
  {% endif %}
</section>
{% endblock %}
 |