Skip to content

Commit

Permalink
fix(devtools): add trailing slash to url
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Jan 15, 2022
1 parent 2e65148 commit fe5cdcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/tools/librelingo_tools/templates/courses.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1><a href="https://librelingo.app/">LibreLingo courses</a></h1>
<table>
<tr><th>Course</th><th>Words</th><th>Phrases</th></tr>
{% for link in links|sort(attribute='tdir') %}
<tr {% if not link['success'] %}class="warning"{% endif %}><td><a href="{{ link['tdir'] }}">{{ link['text'] }}</a></td><td>{{ link["words"] }}</td><td>{{ link["phrases"] }}</td></tr>
<tr {% if not link['success'] %}class="warning"{% endif %}><td><a href="{{ link['tdir'] }}/">{{ link['text'] }}</a></td><td>{{ link["words"] }}</td><td>{{ link["phrases"] }}</td></tr>
{% endfor %}
</table>
<div>Generated at {{ start_time }} Elapsed time: {{ (end_time-start_time).seconds }} seconds</div>
Expand Down

1 comment on commit fe5cdcd

@vercel
Copy link

@vercel vercel bot commented on fe5cdcd Jan 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.