fixed issues with pathing return local disk
This commit is contained in:
parent
07909c41fc
commit
1cc2747629
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
|||
<label class="form-label">Current Featured Image</label>
|
||||
<div class="current-image">
|
||||
<img
|
||||
src="{{ url_for('static', filename='uploads/' + asset.featured_image) }}"
|
||||
src="{{ asset.featured_image_url }}"
|
||||
alt="{{ asset.title }}"
|
||||
/>
|
||||
</div>
|
||||
|
@ -109,7 +109,7 @@
|
|||
{% for file in asset.files %}
|
||||
<li class="file-item">
|
||||
<a
|
||||
href="{{ url_for('static', filename='uploads/' + file.filename) }}"
|
||||
href="{{ file.file_url }}"
|
||||
target="_blank"
|
||||
class="file-link"
|
||||
>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue