mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-07 23:31:20 +00:00
moved directory structure
This commit is contained in:
1
website/page/__init__.py
Normal file
1
website/page/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from __future__ import unicode_literals
|
||||
27
website/page/unsubscribe/unsubscribe.py
Normal file
27
website/page/unsubscribe/unsubscribe.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# ERPNext - web based ERP (http://erpnext.com)
|
||||
# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from __future__ import unicode_literals
|
||||
import webnotes
|
||||
|
||||
@webnotes.whitelist()
|
||||
def unsubscribe(arg):
|
||||
"""unsubscribe from lists"""
|
||||
lists = [['Blog Subscriber', 'name']]
|
||||
for l in lists:
|
||||
webnotes.conn.sql("""delete from `tab%s` where %s=%s""" % (l[0], l[1], '%s'), arg)
|
||||
|
||||
webnotes.msgprint('Unsubscribed!')
|
||||
1
website/page/website_home/__init__.py
Normal file
1
website/page/website_home/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from __future__ import unicode_literals
|
||||
41
website/page/website_home/website_home.html
Normal file
41
website/page/website_home/website_home.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<div class="layout-wrapper layout-wrapper-background">
|
||||
<div class="appframe-area"></div>
|
||||
<div class="layout-main-section">
|
||||
<div style="width: 48%; float: left;">
|
||||
<h4><a href="#!List/Web Page">Web Page</a></h4>
|
||||
<p class="help">Static (content) web page</p>
|
||||
<br>
|
||||
<h4><a href="#!List/Blog">Blog</a></h4>
|
||||
<p class="help">Weblog (blog) entry</p>
|
||||
</div>
|
||||
<div style="width: 48%; float: right;">
|
||||
<h4><a href="#!Form/Website Settings/Website Settings">Website Settings</a></h4>
|
||||
<p class="help">Setup of top navigation bar, footer and logo</p>
|
||||
<br>
|
||||
<h4><a href="#!Form/Style Settings/Style Settings">Style Settings</a></h4>
|
||||
<p class="help">Setup of fonts and background</p>
|
||||
</div>
|
||||
<div style="clear: both"></div>
|
||||
<hr>
|
||||
<h3>Reports</h3>
|
||||
<div class="reports-list"></div>
|
||||
</div>
|
||||
<div class="layout-side-section">
|
||||
<div class="psidebar">
|
||||
<div class="section">
|
||||
<p><b>Create website with static pages and blogs</b></p>
|
||||
<ul>
|
||||
<li>"Website Settings" - to setup header and footers.
|
||||
<li>"Web Page" - for static web page.
|
||||
<li>"Blog" - for blog entry.
|
||||
</ul>
|
||||
<p><b>Notes: </b></p>
|
||||
<ul>
|
||||
<li>All pages are accessible via `#` + page name appended to your url.
|
||||
<li>Product catalogue is updated from Item Master (set Show in Website = 'Yes', in
|
||||
Sales Settings).
|
||||
</ul> </div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
</div>
|
||||
20
website/page/website_home/website_home.js
Normal file
20
website/page/website_home/website_home.js
Normal file
@@ -0,0 +1,20 @@
|
||||
// ERPNext - web based ERP (http://erpnext.com)
|
||||
// Copyright (C) 2012 Web Notes Technologies Pvt Ltd
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
pscript['onload_website-home'] = function(wrapper) {
|
||||
wrapper.appframe = new wn.ui.AppFrame($(wrapper).find('.appframe-area'), 'Website');
|
||||
erpnext.module_page.setup_page('Website', wrapper);
|
||||
}
|
||||
28
website/page/website_home/website_home.txt
Normal file
28
website/page/website_home/website_home.txt
Normal file
@@ -0,0 +1,28 @@
|
||||
# Page, website-home
|
||||
[
|
||||
|
||||
# These values are common in all dictionaries
|
||||
{
|
||||
'creation': '2012-02-21 13:23:51',
|
||||
'docstatus': 0,
|
||||
'modified': '2012-02-21 13:23:51',
|
||||
'modified_by': u'Administrator',
|
||||
'owner': u'Administrator'
|
||||
},
|
||||
|
||||
# These values are common for all Page
|
||||
{
|
||||
'doctype': 'Page',
|
||||
'module': u'Website',
|
||||
'name': '__common__',
|
||||
'page_name': u'website-home',
|
||||
'standard': u'Yes',
|
||||
'title': u'Website Home'
|
||||
},
|
||||
|
||||
# Page, website-home
|
||||
{
|
||||
'doctype': 'Page',
|
||||
'name': u'website-home'
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user