私はこれをDjango管理者のリスト表示として持っています
list_display = ('product', 'price', 'purchase_date', 'confirmed', 'get_po_number', 'notes')
models.py で:
class PurchaseOrder(models.Model):
notes = models.TextField( null=True, blank= True)
これは次のようになります。
[1]: http://i.imgur.com/ZyKmpoF.png '
ご覧のとおり、「メモ」は多くのスペースを占める可能性があるため、ボタンをクリックしてそのフィールドを表示/非表示にする方法はありますか?