{% extends "templates/web.html" %} {% block title %}{{ doc.project_name }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %}

{{ doc.project_name }}

{% endblock %} {% block style %} {% endblock %} {% block page_content %} {% include 'templates/includes/project_search_box.html' %} {% if frappe.form_dict.q %}

Filtered by "{{ frappe.form_dict.q }}" Clear

{% else %}

{{ _("Activity Feed") }}

{% include "erpnext/templates/includes/projects/timeline.html" %}
{% if doc.timelines|length > 9 %}

{{ _("More") }}

{% endif %} {% endif %} {% if doc.tasks %}

New

{{ _("Tasks") }}

{% include "erpnext/templates/includes/projects/project_tasks.html" %}
{% if doc.tasks|length > 4 %}

{{ _("More") }}

{% endif %}

{% else %}

No tasks

{% endif %} {% if doc.issues %}
New

{{ _("Issues") }}

{% include "erpnext/templates/includes/projects/project_issues.html" %}
{% if doc.issues|length > 4 %}

{{ _("More") }}

{% endif %}

{% else %}

No Issues

{% endif %} {% if doc.timelogs %}

{{ _("Time Logs") }}

{% include "erpnext/templates/includes/projects/project_timelogs.html" %}
{% if doc.timelogs|length > 1 %}

{{ _("More") }}

{% endif %} {% else %}

No time logs

{% endif %} {% endblock %}