Changes between Version 1 and Version 2 of Ticket #18168, comment 6
- Timestamp:
- Aug 3, 2012, 5:47:46 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18168, comment 6
v1 v2 5 5 Example: 6 6 {{{ 7 # models.py 8 9 from django.db import models1 10 11 class Variable(models.Model): 12 name = models.CharField(max_length=3) 13 7 14 # admin.py 8 15