File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 2121<tbody >
2222{% for directory in stats .stats_by_directory () %}
2323<tr >
24- <td >{{ directory.path.stem }}</td >
24+ <td >▶ {{ directory.path.name }} ({{ directory.files_stats | length }}) </td >
2525 <td data-label =" completion" >
2626 <div class =" progress-bar" style =" width : {{ directory.completion }}%;background-color : #4caf50 ;" >
2727 {{ '{:.2f}%'.format(directory.completion) }}
3131 </div >
3232 </td >
3333</tr >
34+ {% for file in directory .files_stats %}
35+ <tr >
36+ <td >{{ file.filename }}</td >
37+ <td data-label =" completion" >
38+ <div class =" progress-bar" style =" width : {{ file.percent_translated }}%;background-color : #4caf50 ;" >
39+ {{ file.percent_translated }}%
40+ </div >
41+ <div class =" progress-bar-outer-label" >
42+ {{ file.percent_translated }}%
43+ </div >
44+ </td >
45+ </tr >
46+ {% endfor %}
3447{% endfor %}
3548</tbody >
3649</table >
You can’t perform that action at this time.
0 commit comments