Skip to content

Commit fa7d5db

Browse files
authored
docs: inline images paths (#1371)
1 parent 3aafe8a commit fa7d5db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/inlines/nonrelated.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: Implement nonrelated inlines in Django Unfold to display and manage
88

99
Django Unfold provides a powerful feature for displaying inlines that don't have a direct relationship (no foreign key) with the main model in the changeform view. These nonrelated inlines are available through the `unfold.contrib.inlines` module. To use this functionality, ensure that you have included the module in your project's `INSTALLED_APPS` configuration within settings.py. This feature allows you to display and manage related data even when there isn't a traditional database relationship between the models.
1010

11-
[![Nonrelated inlines](/static/docs/inlines/nonrelated-inlines.webp)](/static/docs/tabs/nonrelated-inlines.webp)
11+
[![Nonrelated inlines](/static/docs/inlines/nonrelated-inlines.webp)](/static/docs/inlines/nonrelated-inlines.webp)
1212

1313
```python
1414
from django.contrib.auth.models import User

docs/inlines/sortable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: Implement sortable inlines in Django Unfold to enable drag-and-drop
88

99
Django Unfold provides a powerful sorting capability for inlines through the `ordering_field` attribute in the inline class. When specified, this field determines the sorting order of inlines within the admin panel. For enhanced UI customization, you can optionally hide the ordering field from the interface by setting `hide_ordering_field` to `True`.
1010

11-
[![Sortable inlines](/static/docs/inlines/sortable-inlines.webp)](/static/docs/tabs/sortable-inlines.webp)
11+
[![Sortable inlines](/static/docs/inlines/sortable-inlines.webp)](/static/docs/inlines/sortable-inlines.webp)
1212

1313

1414
Important considerations when implementing sortable inlines:

0 commit comments

Comments
 (0)