mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
backup manager (wip)
This commit is contained in:
11
website/templates/pages/message.html
Normal file
11
website/templates/pages/message.html
Normal file
@@ -0,0 +1,11 @@
|
||||
{% extends "html/outer.html" %}
|
||||
|
||||
{% set title="{{ webnotes.message_title or 'Message' }}" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="content">
|
||||
<div class="layout-wrapper layout-main">
|
||||
{{ webnotes.message }}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
@@ -1,13 +0,0 @@
|
||||
{% extends "html/outer.html" %}
|
||||
|
||||
{% set title="Unsubscribed" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="content">
|
||||
<div class="layout-wrapper layout-main">
|
||||
<h3>Unsubscribed</h3>
|
||||
<br>
|
||||
<p><b>{{ webnotes.unsubscribed_email }}</b> has been unsubscribed.</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
@@ -242,7 +242,8 @@ def get_outer_env(page_name, args):
|
||||
where parent='Website Settings' and parentfield='footer_items'
|
||||
order by idx asc""", as_dict=1),
|
||||
|
||||
'int':int
|
||||
'int':int,
|
||||
"webnotes": webnotes
|
||||
})
|
||||
|
||||
args.update(ret)
|
||||
|
||||
Reference in New Issue
Block a user