Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

docs: update URL syntax for modern Django #545

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Add `tinymce.urls` to `urls.py` for your project:
```python
urlpatterns = [
...
url(r'^tinymce/', include('tinymce.urls')),
path('tinymce/', include('tinymce.urls')),
...
]
```
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add `tinymce.urls` to `urls.py` for your project:
```python
urlpatterns = [
...
url(r'^tinymce/', include('tinymce.urls')),
path('tinymce/', include('tinymce.urls')),
...
]
```
Expand Down
Loading