Added Django test

This commit is contained in:
Rafael
2023-11-29 08:26:49 +01:00
committed by GitHub
parent 0a74a3a765
commit 1a05c2e704

View File

@@ -65,4 +65,7 @@ function f() {
<a href="{{ url_for('foo.html', 'foo')}}" target="_blank">Example</a>;
// OK, nunjucks template
<a href="{{ url('foo', query={bla}) }}" target="_blank">Example</a>
<a href="{{ url('foo', query={bla}) }}" target="_blank">Example</a>;
// OK, Django application with internal links
<a href="{% url 'admin:auth_user_changelist' %}" target="_blank">Example</a>