brotherton-erpnext/erpnext/templates/pages/discussions.html
2016-07-20 19:25:02 +05:30

16 lines
303 B
HTML

{% extends "templates/web.html" %}
{% block header %}
<h2> {{doc.subject}} </h2>
<p> {{doc.description}} </p>
<p class="text-muted small">Started by: {{doc.owner}} </p>
{% endblock %}
{% block page_content %}
<div>
{% include 'templates/includes/comments/comments.html' %}
</div>
{% endblock %}