Neil Trini Lasrado | 3f0a581 | 2016-07-19 14:17:33 +0530 | [diff] [blame] | 1 | {% extends "templates/web.html" %} |
| 2 | |
| 3 | {% block header %} |
| 4 | <h1> {{doc.subject}} </h1> |
| 5 | {% endblock %} |
| 6 | |
| 7 | {% block page_content %} |
| 8 | |
| 9 | <p class="post-description"> {{doc.description}} </p> |
| 10 | <p class="post-by text-muted small"> |
| 11 | {% for file in attached_files%} |
| 12 | <a href="{{file.file_url}}" target="_new">{{file.file_name}}</a> |
| 13 | <br> |
| 14 | {% endfor %} |
| 15 | <br> |
| 16 | <i>{{ doc.posted_by }}</i> |
| 17 | <i class="blog-dot"></i> {{ frappe.format_date(doc.modified) }} |
| 18 | </p> |
| 19 | |
| 20 | {% endblock %} |