Django ORM, class-based views, DRF serializers, migrations, pytest-django. For Python see python-idioms.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add irahardianto/antigravity-setup --skill django-idioms --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Django Idioms?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/irahardianto-django-idioms)More formats (shields.io, HTML) on the badges page.
---
name: django-idioms
description: Django ORM, class-based views, DRF serializers, migrations, pytest-django. For Python see python-idioms.
paths:
- "**/views.py"
- "**/models.py"
- "**/urls.py"
- "**/manage.py"
---
## Django Idioms and Patterns
Django rewards convention, the ORM, and "batteries included" design. Idiomatic Django = DRY, model-centric, well-tested.
> Scope: Django-specific patterns. For Python: `@.agents/skills/python-idioms/SKILL.md`.
### Models
1. **Fat models, thin views** — business logic in models/managers, not views.
2. **Custom managers for common queries:**
```python
class TaskManager(models.Manager):
def active(self):
return self.filter(status='active')
class Task(models.Model):
objects = TaskManager()
```
3. **`Meta` class** for ordering, constraints, indexes.
### Views
1. **Class-based views for CRUD**, function-based for simple/custom:
```python
class TaskListView(LoginRequiredMixin, ListView):
model = Task
queryset = Task.objects.active()
paginate_by = 25
```
2. **DRF serializers for API boundaries:**
```python
class TaskSerializer(serializers.ModelSerializer):
class Meta:
model = Task
fields = ['id', 'title', 'priority', 'created_at']
read_only_fields = ['id', 'created_at']
```
### ORM
1. **`select_related`/`prefetch_related`** to avoid N+1 queries.
2. **`F()` and `Q()` expressions** for complex queries.
3. **Never raw SQL** unless ORM can't express it (and then use parameterized queries).
### Migrations
1. **One migration per logical change.** Squash when history grows.
2. **Data migrations** in separate migration files from schema changes.
3. **`RunPython` with `reverse_code`** for reversibility.
### Testing
> For universal testing principles, see `.agents/rules/testing-strategy.md`. Below: language-specific patterns only.
1. **`pytest-django`** over `unittest.TestCase`:
```python
@pytest.mark.django_db
def test_create_task():
task = Task.objects.create(title='Test', priority='high')
assert task.title == 'Test'
```
2. **Factory Boy** for test data (not fixtures).
### Formatting and Static Analysis
| Tool | Purpose | Command |
|---|---|---|
| `ruff` | Formatting + linting | `ruff format . && ruff check .` |
| `mypy` + django-stubs | Type checking | `mypy .` |
| `bandit` | Security | `bandit -r .` |
### Related
- Code Idioms and Conventions @.agents/rules/code-idioms-and-conventions.md
- Python Idioms @.agents/skills/python-idioms/SKILL.md
- Security Principles @.agents/rules/security-principles.md
- Architectural Patterns @.agents/rules/architectural-pattern.md
- Database Design Principles @.agents/rules/database-design-principles.md
- Error Handling Principles @.agents/rules/error-handling-principles.md
- Testing Strategy @.agents/rules/testing-strategy.md
- Logging and Observability Mandate @.agents/rules/logging-and-observability-mandate.md
- Logging and Observability Principles @.agents/skills/logging-implementation/SKILL.md
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!