You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
460 B
13 lines
460 B
{% extends 'base.html.twig' %}
|
|
{% block container %}
|
|
|
|
<div class="container">
|
|
<div class="jumbotron text-center">
|
|
<h1 class="display-3">Error en la Precondición de {{tarea[0].nombre}} !!!!!</h1>
|
|
<hr>
|
|
<p class="lead">
|
|
<a class="btn btn-primary btn-sm" href="{{ path('user_dashboard') }}" role="button">Continuar al dashboard</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock container %}
|