File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
{% if doc.status == "Open" %}
19
19
{{ doc.priority }}
20
20
{% else %}
21
- {{ doc.status }}
21
+ {{ _( doc.status) }}
22
22
{%- endif -%}
23
23
</ span >
24
24
</ div >
Original file line number Diff line number Diff line change 20
20
</ div >
21
21
{% else %}
22
22
< span class ="indicator-pill {{ " red " if doc.status=="Open " else "darkgrey" }}">
23
- {{ doc.status }}</ span >
23
+ {{ _( doc.status) }}</ span >
24
24
{% endif %}
25
25
</ div >
26
26
{% if doc["_assign"] %}
Original file line number Diff line number Diff line change 8
8
</ div >
9
9
</ div >
10
10
< div class ="col-sm-3 ">
11
- < span class ="indicator-pill {{ doc.indicator_color or ( "blue " if doc.docstatus==1 else "gray") }} list-item-status"> {{doc.status}}</ span >
11
+ < span class ="indicator-pill {{ doc.indicator_color or ( "blue " if doc.docstatus==1 else "gray") }} list-item-status"> {{ _( doc.status) }}</ span >
12
12
</ div >
13
13
< div class ="col-sm-2 ">
14
14
< div class ="small text-muted items-preview ellipsis ellipsis-width ">
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ <h1> {{ doc.name }} </h1>
38
38
< input type ="text " class ="form-control " name ="Hours " readonly value = "{{ doc.hours }} ">
39
39
40
40
< label for ="status " class ="control-label text-muted small "> {{ __("Status") }}</ label >
41
- < input type ="text " class ="form-control " name ="status " readonly value = "{{ doc.status }} ">
41
+ < input type ="text " class ="form-control " name ="status " readonly value = "{{ _( doc.status) }} ">
42
42
43
43
< label for ="Note " class ="control-label text-muted small "> {{ __("Note") }}</ label >
44
44
< textarea class ="form-control " name ="Hours " readonly > {{ doc.note }} </ textarea >
You can’t perform that action at this time.
0 commit comments