Skip to content

Commit b85d8df

Browse files
1 parent 1e85e51 commit b85d8df

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/template/django/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,3 +181,9 @@ Hello, World!<br /><br />Greetings from Fiber Team
181181
</body>
182182
</html>
183183
```
184+
185+
### Important Information on Template Data Binding
186+
187+
When working with Pongo2 and this template engine, it's crucial to understand the specific rules for data binding. Only keys that match the following regular expression are supported: `^[a-zA-Z0-9_]+$`.
188+
189+
This means that keys with special characters or punctuation, such as `my-key` or `my.key`, are not compatible and will not be bound to the template. This is a restriction imposed by the underlying Pongo2 template engine. Please ensure your keys adhere to these rules to avoid any binding issues.

0 commit comments

Comments
 (0)