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
Line 
1{% extends 'base.template.html' %}
2{% block content %}
3        <div class="center">
4                <h3>Bienvenidos a Murachi-LAT</h3><hr/>
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>
8                {% endif %}
9                <p>Para ver el historial de eventos, haz click en <b>Eventos</b></p>
10                <a href="{% url 'events:list_events' %}" class="btn waves-effect btn blue darken-1">Eventos</a>
11        </div>
12{% endblock %}
Note: See TracBrowser for help on using the repository browser.