Skip to content

Commit

Permalink
fix: added trans in headings
Browse files Browse the repository at this point in the history
  • Loading branch information
Talha-Rizwan committed Jan 2, 2024
1 parent 607e430 commit b85776c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openedx_cmi5_xblock/static/html/openedx_cmi5_xblock.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ <h3 class="xblock-title mb-2">{{title}}</h3>
<br>

{% if index_page_url %}
<h5 class="xblock-title mb-2">Available Assignables:</h5>
<h5 class="xblock-title mb-2"> {% trans "Available Assignables:" %}</h5>
<ol>
{% for au_url in cmi5_xblock.au_urls %}
<li>
<a href="{{ au_url.url }}" target="_blank">AU No. {{ forloop.counter }}</a>
<a href="{{ au_url.url }}" target="_blank"><span>{% trans "AU No." %}</span> {{ forloop.counter }}</a>
</li>
{% endfor %}
</ol>
Expand Down

0 comments on commit b85776c

Please sign in to comment.