118 | {% if device.sync_completion == 100 %}
119 |
Up to Date
120 | {% else %}
121 |
Syncing {{device.sync_completion | int() }}%
122 | {% endif %}
123 |
{{device.folder_count}} folders - {{device.device_count}} devices
124 |
125 |
126 | {% if device.errors is defined %}
127 |
{{device.errors}}
128 | {% endif %}
129 |
130 | {% if device.local_changed_files is defined %}
131 |
Folders with local changes:
132 | {% if device.local_changed_files.items()| length > 0 %}
133 |
134 | {%- for folder, count in device.local_changed_files.items() %}
135 | - {{folder}}: {{count}} file{% if count > 1 %}s{% endif %}
136 | {% endfor %}
137 |
138 | {% else %}
139 |
No file conflicts
140 | {% endif %}
141 | {% endif %}
142 |
143 |
144 | {% if device.pending_devices is defined and device.pending_devices| length > 0 %}
145 |
Pending device{% if device.pending_devices|length > 1 %}s{% endif %}:
146 |
147 | {%- for device in device.pending_devices %}
148 | - {{device}}
149 | {% endfor %}
150 |
151 | {% endif %}
152 |
153 |
154 | {% if device.pending_folders is defined and device.pending_folders| length > 0 %}
155 |
Pending folder{% if device.pending_folders|length > 1 %}s{% endif %}:
156 |
157 | {%- for folder in device.pending_folders %}
158 | - {{folder}}
159 | {% endfor %}
160 |
161 | {% endif %}
162 |
163 |
164 |
165 |
166 |