Skip to content

Instantly share code, notes, and snippets.

@ChillarAnand
Created April 14, 2015 14:28
Show Gist options
  • Save ChillarAnand/4a673204ea34e7601d16 to your computer and use it in GitHub Desktop.
Save ChillarAnand/4a673204ea34e7601d16 to your computer and use it in GitHub Desktop.
django gotchas #2
from django.db import models
class SimpleModel(models.Model):
name = models.CharField(max_length=100)
from django.contrib import admin
admin.site.register(SimpleModel)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment