seitime-frappe/frappe/www/modified_doc_alert.html
Suraj Shetty ecde50a699 Add logic to check if the document was modified (#5746)
- Check if the document was modified after the workflow
action mail was sent.
If yes, then show an alert with the latest document preview.
2018-07-02 19:10:48 +05:30

19 lines
No EOL
537 B
HTML

{% extends "templates/web.html" %}
{% block page_content %}
<div class="panel panel-default">
<div class="panel-heading" style="display:flex; justify-content:space-between">
<h3 class="panel-title">{{ _(title) }}</h3>
{% if action %}
<a href="{{action.link}}" class="btn btn-sm btn-primary">{{ _(action.label) }}</a>
{% endif %}
</div>
<div class="panel-body">
<div class="padding">
{{ _(message) }}
</div>
<div class="padding">
{{ print_format }}
</div>
</div>
</div>
{% endblock %}