mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 06:21:13 +00:00
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
error: template attribute `askama` can only be used on the `enum`, not its variants
|
|
--> tests/ui/enum.rs:5:43
|
|
|
|
|
5 | #[template(ext = "txt", source = "🫨", askama = askama)]
|
|
| ^^^^^^
|
|
|
|
error: template attribute `askama` can only be used on the `enum`, not its variants
|
|
--> tests/ui/enum.rs:11:43
|
|
|
|
|
11 | #[template(ext = "txt", source = "🫏", askama = askama)]
|
|
| ^^^^^^
|
|
|
|
error: template attribute `askama` can only be used on the `enum`, not its variants
|
|
--> tests/ui/enum.rs:20:43
|
|
|
|
|
20 | #[template(ext = "txt", source = "🪻", askama = askama)]
|
|
| ^^^^^^
|
|
|
|
error: template attribute `askama` can only be used on the `enum`, not its variants
|
|
--> tests/ui/enum.rs:27:43
|
|
|
|
|
27 | #[template(ext = "txt", source = "🫠", askama = askama)]
|
|
| ^^^^^^
|
|
|
|
error: cannot find block `c`
|
|
--> tests/ui/enum.rs:48:24
|
|
|
|
|
48 | #[template(block = "c")]
|
|
| ^^^
|