View | Details | Raw Unified | Return to bug 48303
Collapse All | Expand All

(-)a/ucs-school-umc-import/umc/js/schoolimport.js (-1 / +1 lines)
 Lines 316-322   define([ Link Here 
316
					name: 'date',
316
					name: 'date',
317
					label: _('Started at'),
317
					label: _('Started at'),
318
					formatter: function(value) {
318
					formatter: function(value) {
319
						return locale.format(locale.parse(value, {datePattern: 'yyyy/MM/dd', timePattern: 'HH:mm:ss', locale: 'de-DE'}));
319
						return locale.format(new Date(value));
320
					}
320
					}
321
				}, {
321
				}, {
322
					name: 'school',
322
					name: 'school',
(-)a/ucs-school-umc-import/umc/python/schoolimport/__init__.py (-1 / +1 lines)
 Lines 211-217   class Instance(SchoolBaseModule, ProgressMixin): Link Here 
211
			'school': job.school.displayName,
211
			'school': job.school.displayName,
212
			'creator': job.principal,
212
			'creator': job.principal,
213
			'userrole': self._parse_user_role(job.user_role),
213
			'userrole': self._parse_user_role(job.user_role),
214
			'date': job.date_created.strftime('%Y/%m/%d %H:%M:%S'),
214
			'date': job.date_created.isoformat(),
215
			'status': self._parse_status(job.status),
215
			'status': self._parse_status(job.status),
216
		} for job in self._jobs()]
216
		} for job in self._jobs()]
217
217

Return to bug 48303