Skip to content

Commit

Permalink
Opis pól tylko do odczytu
Browse files Browse the repository at this point in the history
  • Loading branch information
pktiuk committed Sep 4, 2024
1 parent 6103297 commit 40341b2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/Webówka🌍/9_django.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,16 @@ Często edytowane pola dla tej klasy to:
- `list_display` - określa jakie kolumny mają być wyświetlane w zbiorczej liście obiektów
- `list_filter` - określa jakie filtry mają być dostępne
- `search_fields` - określa jakie pola mają być używane do wyszukiwania (nad listą będzie wyszukiwarka, która może korzystać z tych pól)
- `readonly_fields` - określa pola tylko do odczytu (dodatkowo można opisać funkcje, które je uzyskują).
```python
class PersonAdmin(admin.ModelAdmin):
readonly_fields = ["address_report"]

# description functions like a model field's verbose_name
@admin.display(description="Address")
def address_report(self, instance):
return instance.address
```

## REST API

Expand Down

0 comments on commit 40341b2

Please sign in to comment.