Changes between Initial Version and Version 3 of Ticket #7415
- Timestamp:
- Jun 16, 2008, 10:24:00 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7415 – Description
initial v3 1 1 Right now (revision 7612) AdminFileWidget is implemented this way: 2 if value: 3 output.append('%s <a target="_blank" href="%s%s">%s</a> <br />%s ' % \ 2 3 {{{ 4 if value: 5 output.append('%s <a target="_blank" href="%s%s">%s</a> <br />%s ' % \ 4 6 (_('Currently:'), settings.MEDIA_URL, value, value, _('Change:'))) 7 }}} 5 8 6 9 The value in database contains \ as a path separator. It is shown as a url instead of needed / separator for urls. Works as is under Unix, but clearly not on Windows.