Skip to content

Commit

Permalink
feat: url static files
Browse files Browse the repository at this point in the history
  • Loading branch information
BetoFandino committed Feb 8, 2024
1 parent 8bf4084 commit c7e8b6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lms/templates/certificates/_accomplishment-rendering.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%page expression_filter="h"/>
<%! from django.utils.translation import gettext as _ %>
<%namespace name='static' file='../static_content.html'/>
<%namespace name='static' file='/static_content.html'/>
<%
course_mode_class = course_mode if course_mode else ''
%>
Expand Down Expand Up @@ -48,7 +48,7 @@ <h3 class="accomplishment-signatories-title sr-only">${_("Noted by")}</h3>
% for signatory in certificate_data.get('signatories', []):
% if signatory.get('signature_image_path'):
<div class="signatory">
<img class="" src="${static.url(signatory['signature_image_path'])}" alt="${signatory['name']}">
<img class="signatory-signature" src="${static.url(signatory['signature_image_path'])}" alt="${signatory['name']}">

<h4 class="signatory-name hd-5">${signatory['name']}</h4>
<p class="signatory-credentials copy copy-micro">
Expand Down

0 comments on commit c7e8b6b

Please sign in to comment.