Skip to content
Snippets Groups Projects
Commit 3b956f2b authored by Rushabh Mehta's avatar Rushabh Mehta
Browse files

[minor] [fix] [docs] publisher in footer

parent f24ed414
No related branches found
No related tags found
No related merge requests found
// Copyright (c) 2016, {app_publisher} and contributors
// For license information, please see license.txt
frappe.ui.form.on('{doctype}', {{
refresh: function(frm) {{
......
......@@ -204,10 +204,10 @@ class DocType(Document):
make_boilerplate("controller.py", self)
if not (self.istable or self.issingle):
make_boilerplate("test_controller.py", self)
make_boilerplate("test_controller.py", self.as_dict())
if not self.istable:
make_boilerplate("controller.js", self)
make_boilerplate("controller.js", self.as_dict())
def make_amendable(self):
"""If is_submittable is set, add amended_from docfields."""
......
// Copyright (c) 2013, {app_publisher} and contributors
// Copyright (c) 2016, {app_publisher} and contributors
// For license information, please see license.txt
frappe.query_reports["{name}"] = {{
......
......@@ -65,7 +65,7 @@
<div class="built-with-frappe text-center">
<img class="frappe-bird" src="{{ docs_base_url }}/assets/img/frappe-bird-grey.svg">
<h3>By Frappe Technologies</h3>
<h3>By {{ app.publisher }}</h3>
</div>
<div class="text-center">
<ul class="list-unstyled">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment