Changes between Version 1 and Version 2 of Ticket #18168, comment 6


Ignore:
Timestamp:
Aug 3, 2012, 5:47:46 AM (12 years ago)
Author:
Joeri Bekker

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18168, comment 6

    v1 v2  
    55Example:
    66{{{
     7# models.py
     8
     9from django.db import models1
     10
     11class Variable(models.Model):
     12    name  = models.CharField(max_length=3)
     13
    714# admin.py
    815
Back to Top