more tests

This commit is contained in:
2026-08-11 18:15:35 -05:00
parent 7a32f9c8d3
commit 9c43c52a0a
17 changed files with 10139 additions and 8908 deletions
+69
View File
@@ -0,0 +1,69 @@
==================
Url Basic
==================
{% url 'view-name' %}
---
(template
(content)
(url_block
(string))
(content))
==================
Url With Positional Args
==================
{% url 'view-name' arg1 arg2 %}
---
(template
(content)
(url_block
(string)
(filtered_value
(value
(variable_attribute
(identifier))))
(filtered_value
(value
(variable_attribute
(identifier)))))
(content))
==================
Url With Keyword Args
==================
{% url 'view-name' key=val %}
---
(template
(content)
(url_block
(string)
(identifier)
(filtered_value
(value
(variable_attribute
(identifier)))))
(content))
==================
Url With As
==================
{% url 'view-name' as myurl %}
---
(template
(content)
(url_block
(string)
variable: (identifier))
(content))