2012-06-26 13:24:10 +00:00
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
// js inside blog page
|
|
|
|
wn.pages['{{ name }}'].onload = function(wrapper) {
|
|
|
|
erpnext.blog_list = new wn.ui.Listing({
|
|
|
|
parent: $(wrapper).find('#blog-list').get(0),
|
2012-07-12 19:16:59 +00:00
|
|
|
method: 'website.blog.get_blog_list',
|
2012-06-26 13:24:10 +00:00
|
|
|
hide_refresh: true,
|
|
|
|
no_toolbar: true,
|
|
|
|
render_row: function(parent, data) {
|
2012-08-06 09:52:17 +00:00
|
|
|
if(!data.comments) {
|
|
|
|
data.comment_text = 'No comments yet.'
|
|
|
|
} else if (data.comments=1) {
|
|
|
|
data.comment_text = '1 comment.'
|
|
|
|
} else {
|
|
|
|
data.comment_text = data.comments + ' comments.'
|
|
|
|
}
|
|
|
|
|
2012-06-26 13:24:10 +00:00
|
|
|
if(data.content && data.content.length==1000) {
|
|
|
|
data.content += repl('... <a href="%(name)s.html">(read on)</a>', data);
|
|
|
|
}
|
|
|
|
parent.innerHTML = repl('<h2><a href="%(name)s.html">%(title)s</a></h2>\
|
2012-08-06 09:52:17 +00:00
|
|
|
<div class="help">%(comment_text)s</div>\
|
2012-07-12 19:44:52 +00:00
|
|
|
%(content)s<br /><br />', data);
|
2012-06-26 13:24:10 +00:00
|
|
|
},
|
|
|
|
page_length: 10
|
|
|
|
});
|
|
|
|
erpnext.blog_list.run();
|
2012-07-12 13:11:12 +00:00
|
|
|
}
|