110 lines
2.8 KiB
HTML
110 lines
2.8 KiB
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}{{ doc.project_name }}{% endblock %}
|
|
|
|
{%- from "templates/includes/projects/macros.html" import back_link -%}
|
|
|
|
{% block breadcrumbs %}
|
|
<div class="page-breadcrumbs" data-html-block="breadcrumbs">
|
|
<ul class="breadcrumb">
|
|
<li>
|
|
<span class="icon icon-angle-left"></span>
|
|
<a href="/project">Projects</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1 class= "title">
|
|
{{ doc.project_name }}
|
|
</h1>
|
|
{% endblock %}
|
|
|
|
{% block style %}
|
|
<style>
|
|
{% include "templates/includes/projects.css" %}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
{% include 'templates/includes/projects/project_search_box.html' %}
|
|
|
|
<!-- {% if frappe.form_dict.q %}
|
|
<p class="text-muted"> <a href="/projects?project={{doc.name}}" class="text-muted">
|
|
Filtered by "{{ frappe.form_dict.q }}" Clear</a></p>
|
|
{% else %}
|
|
<h3>{{ _("Activity Feed") }}</h3>
|
|
<div class='project-timelines timeline-centered'>
|
|
{% include "erpnext/templates/includes/projects/timeline.html" %}
|
|
</div>
|
|
{% if doc.timelines|length > 9 %}
|
|
<p><a class='more-timelines small underline'>{{ _("More") }}</a><p>
|
|
{% endif %}
|
|
|
|
{% endif %} -->
|
|
|
|
<div class='padding'></div>
|
|
|
|
<h3>{{ _("Tasks") }}</h3>
|
|
|
|
<p>
|
|
<a class='small underline' href='/tasks?new=1&project={{ doc.project_name }}{{ back_link(doc) }}'>New task</a>
|
|
<a class='small underline task-status-switch' data-status='Open'>{{ _("Show closed") }}</a>
|
|
</p>
|
|
|
|
{% if doc.tasks %}
|
|
<div class='project-task-section'>
|
|
<div class='project-task'>
|
|
{% include "erpnext/templates/includes/projects/project_tasks.html" %}
|
|
</div>
|
|
<p><a id= 'more-task' style='display: none;' class='more-tasks small underline'>{{ _("More") }}</a><p>
|
|
</div>
|
|
{% else %}
|
|
<p class="text-muted">No tasks</p>
|
|
{% endif %}
|
|
|
|
|
|
<!-- <div class='padding'></div>
|
|
<h3>{{ _("Issues") }}</h3>
|
|
|
|
<p>
|
|
<a class='small underline' href='/issues?new=1&project={{ doc.project_name }}{{ back_link(doc) }}'>New issue</a>
|
|
<a class='small underline issue-status-switch' data-status='Open'>{{ _("Show closed") }}</a>
|
|
</p>
|
|
|
|
{% if doc.issues %}
|
|
<div class='project-issue-section'>
|
|
<div class='project-issue'>
|
|
{% include "erpnext/templates/includes/projects/project_issues.html" %}
|
|
</div>
|
|
<p><a id='more-issue' style='display: none;' class='more-issues small underline'>{{ _("More") }}</a><p>
|
|
</div>
|
|
{% else %}
|
|
<p class="text-muted">No Issues</p>
|
|
{% endif %} -->
|
|
|
|
<div class='padding'></div>
|
|
|
|
<h3>{{ _("Time Logs") }}</h3>
|
|
|
|
{% if doc.timelogs %}
|
|
<div class='project-timelogs'>
|
|
{% include "erpnext/templates/includes/projects/project_timelogs.html" %}
|
|
</div>
|
|
{% if doc.timelogs|length > 9 %}
|
|
<p><a class='more-timelogs small underline'>{{ _("More") }}</a><p>
|
|
{% endif %}
|
|
{% else %}
|
|
<p class="text-muted">No time logs</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<script>
|
|
{% include "erpnext/templates/pages/projects.js" %}
|
|
</script>
|
|
|
|
{% endblock %}
|