Anthropic Claudeソフトウェア開発⭐ リポ 7品質スコア 59/100
django-cbv-patterns
Django Class-Based Viewsを使用して、モジュール化された再利用可能なビューを構築できます。CRUD操作や複雑なビューロジックを実装する際に活用します。
description の原文を見る
Use when Django Class-Based Views for building modular, reusable views. Use when creating CRUD operations and complex view logic.
SKILL.md 本文
注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
Django Class-Based Views
Master Django Class-Based Views for building modular, reusable view logic with proper separation of concerns.
Generic Views
Use Django's built-in generic views for common patterns.
from django.views.generic import ListView, DetailView, CreateView, UpdateView, DeleteView
from django.urls import reverse_lazy
class PostListView(ListView):
model = Post
template_name = 'posts/list.html'
context_object_name = 'posts'
paginate_by = 10
ordering = ['-created_at']
def get_queryset(self):
queryset = super().get_queryset()
...
詳細情報
- 作者
- majiayu000
- ライセンス
- 不明
- 最終更新
- 2026/5/9
Source: https://github.com/majiayu000/claude-skill-registry-data / ライセンス: 未指定