source: firmaeventos/base/templates/index.html @ 9add819

Last change on this file since 9add819 was 71e4f31, checked in by rudmanmrrod <rudman22@…>, 7 years ago

Añadida validación para no mostrar el boton de ingresar al estar logueado

  • Property mode set to 100755
File size: 531 bytes
RevLine 
[2f56f4e]1{% extends 'base.template.html' %}
2{% block content %}
3        <div class="center">
[e060c84]4                <h3>Bienvenidos a Murachi-LAT</h3><hr/>
[71e4f31]5                {% if not request.user.is_authenticated %}
6                        <p>Si deseas ingresar como admin haz click en <b>Ingresar</b></p>
7                        <a href="{% url 'users:login' %}" class="btn waves-effect btn blue darken-1">Ingresar</a>
[e060c84]8                {% endif %}
[7cad786]9                <p>Para ver el historial de eventos, haz click en <b>Eventos</b></p>
[4db73c3]10                <a href="{% url 'events:list_events' %}" class="btn waves-effect btn blue darken-1">Eventos</a>
[2f56f4e]11        </div>
12{% endblock %}
Note: See TracBrowser for help on using the repository browser.