%PDF- %PDF-
| Direktori : /opt/pyxsoft/templates/ |
| Current File : //opt/pyxsoft/templates/message.tmpl |
{% extends "template-base/index.tmpl" %}
{% block HTMLTitle %}{{ HTMLTitle }}{% endblock %}
{% block PageTitle %}{{ PageTitle }}{% endblock %}
{% block contenido %}
<div class="row">
<div class="col-md-6">
<div class="{% if msgType == "error" || msgType=="alerta" || msgType == "exito" || msgType == "pregunta" %}{{ msgType }}{% else %}alert alert-{{ msgType }}{% endif %}">
{{ msgText|safe }}
</div>
<br>
{% if redirection %}
<button class="btn btn-primary btn-3d" onclick='location.href="{{ redirection }}"'>{{ Tr(Lang,"message.btnReturn") }}</button>
{% else %}
<button class="btn btn-primary btn-3d" onclick='history.go(-1)'>{{ Tr(Lang,"message.btnReturn") }}</button>
{% endif %}
</div>
</div>
{% endblock %}