Quellcode durchsuchen

Inline comments for the breads model

Edd Baldry vor 8 Jahren
Ursprung
Commit
13e3a52041
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
  1. 3 2
      bakerydemo/breads/models.py

+ 3 - 2
bakerydemo/breads/models.py

@@ -16,8 +16,9 @@ from bakerydemo.base.models import BasePageFieldsMixin
 @register_snippet
 class Country(models.Model):
     """
-    Standard Django model to store set of countries of origin.
-    Exposed in the Wagtail admin via Snippets.
+    A Django model to store set of countries of origin.
+    It uses the `@register_snippet` decorator to allow it to be accessible
+    as via the Snippets UI (e.g. /admin/snippets/breads/country/)
     """
 
     title = models.CharField(max_length=100)