A Django admin mixin for displaying related fields with clickable links.
Project description
django-related-field-display
A simple Django admin mixin to easily display and link related model fields using __ syntax.
Installation
pip install django-related-field-display
## Usage
Add `RelatedFieldDisplayMixin` to your admin class:
```python
from django.contrib import admin
from related_field_display.admin import RelatedFieldDisplayMixin
from .models import YourModel
@admin.register(YourModel)
class YourModelAdmin(RelatedFieldDisplayMixin, admin.ModelAdmin):
list_display = ('id', 'related_field__name', 'another_field')
list_filter = ('related_field__category',)
ordering = ('-id',)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters