seitime-frappe/frappe/www/message.html
2021-09-09 15:29:02 +05:30

49 lines
1.2 KiB
HTML

{% extends "templates/web.html" %}
{% block title %}{{ title or _("Message") }}{% endblock %}
{% block page_content %}
<style>
{% include "templates/styles/card_style.css" %}
{% if fullpage %}
header, footer {
display: none;
}
html, body {
background-color: #f5f7fa;
}
{% endif %}
{% if card_width %}
.page-card {
max-width: {{ card_width }}px;
}
{% endif %}
</style>
<div class='page-card'>
<h5 class='page-card-head'>
<span class='indicator {{ indicator_color or "blue" }}'>
{{ title or _("Message") }}</span>
</h5>
<div class="page-card-body">
{% block message_body %}
<p>{{ message or "" }}</p>
{% if primary_action %}
<div><a href='{{ primary_action or "/" }}' class='btn btn-primary btn-sm'>
{{ primary_label or _("Home") }}</a></div>
{% endif %}
{% endblock %}
</div>
</div>
{% if error_code %}
<p class='text-muted text-center small' style='margin-top: -20px;'>{{ _("Status: {0}").format(error_code) }}</p>
{% endif %}
<script>
frappe.ready(function() {
if (window.location.hash || window.location.href.includes('/app')) {
localStorage.setItem('session_last_route', window.location.pathname + window.location.hash + window.location.search);
}
$('.btn-primary').focus();
});
</script>
{% endblock %}