-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: for the wiki page translation (#33050)
- Loading branch information
1 parent
d59db28
commit bbd7e28
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{% load i18n %} | ||
{% load django_markup %} | ||
<p id="hint_id_content" class="help-block"> | ||
{% filter force_escape %} | ||
{% blocktrans with start_link="<a id='cheatsheetLink' href='#cheatsheetModal' rel='leanModal'>" end_link="</a>" trimmed %} | ||
Markdown syntax is allowed. See the {{ start_link }}cheatsheet{{ end_link }} for help. | ||
{% blocktrans trimmed asvar tmsg %} | ||
Markdown syntax is allowed. See the {start_link}cheatsheet{end_link} for help. | ||
{% endblocktrans %} | ||
{% endfilter %} | ||
{% interpolate_html tmsg start_link='<a id="cheatsheetLink" href="#cheatsheetModal" rel="leanModal">'|safe end_link='</a>'|safe %} | ||
</p> | ||
<textarea {{ attrs }}>{{ content }}</textarea> |