blob: 4a61fc8ccc8c0d5e29e3c5f73019f560483b169c [file] [log] [blame]
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
def get_context(context):
announcement = frappe.get_doc('Announcement', frappe.form_dict.announcement)
context.no_cache = 1
context.show_sidebar = True
announcement.has_permission('read')
context.doc = announcement
attachments = frappe.db.sql("""select file_url, file_name from tabFile as file
where file.attached_to_name=%s """,(announcement.name), as_dict = True)
context.attached_files = attachments