テンプレートで好きな変数を使いたい時やフォームで新たにフィールドを作りたくないときにget_context_dataを使う方法を紹介します。
まずは
class ListCreate(CreateView):
...
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context['好きな変数'] = '好きな文章を入れる'
return context
例えば上のコードの場合はテンプレートは下の様にする事で好きな文字列を表示させる事ができます。
<p>{{ 好きな変数 }}</p>
簡単に扱う事が出来ます。