mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-15 01:43:10 +00:00
[cleanup] projects
This commit is contained in:
28
erpnext/templates/includes/projects/project_row.html
Normal file
28
erpnext/templates/includes/projects/project_row.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{% if doc.status=="Open" %}
|
||||
<div class="web-list-item">
|
||||
<a class="no-decoration" href="/projects?project={{ doc.name }}">
|
||||
<div class="row">
|
||||
<div class="col-xs-4">
|
||||
|
||||
{{ doc.name }}
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
{% if doc.percent_complete %}
|
||||
<div class="progress" style="margin-bottom: 0!important; margin-top: 10px!important; height:5px;">
|
||||
<div class="progress-bar progress-bar-{{ "warning" if doc.percent_complete|round < 100 else "success"}}" role="progressbar"
|
||||
aria-valuenow="{{ doc.percent_complete|round|int }}"
|
||||
aria-valuemin="0" aria-valuemax="100" style="width:{{ doc.percent_complete|round|int }}%;">
|
||||
</div>
|
||||
</div>
|
||||
{% else %}
|
||||
<span class="indicator {{ "red" if doc.status=="Open" else "darkgrey" }}">
|
||||
{{ doc.status }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="col-xs-4 text-right small text-muted">
|
||||
{{ frappe.utils.pretty_date(doc.modified) }}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
@@ -1,17 +0,0 @@
|
||||
{% for timeline in doc.timelines %}
|
||||
<article class="timeline-entry">
|
||||
<div class="timeline-entry-inner">
|
||||
<div class="timeline-icon {{ "bg-danger" if ((timeline.reference_name).startswith('ISS') and (timeline.subject).startswith('Open')) else "bg-warning" if ((timeline.reference_name).startswith('TASK') and (timeline.subject).startswith('Open')) else "bg-success" if (timeline.subject).startswith('Closed') else "bg-info"}}">
|
||||
</div>
|
||||
<div class="timeline-label">
|
||||
<span class="avatar avatar-small" title="{{ timeline.modified_by }}"> <img src="{{ timeline.user_image }}"></span>
|
||||
<span class='indicator'>
|
||||
{{timeline.reference_name}} {{timeline.subject }}
|
||||
</span>
|
||||
<span class='indicator pull-right'>
|
||||
{{ frappe.utils.pretty_date(timeline.creation) }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
{% endfor %}
|
||||
Reference in New Issue
Block a user