/images/sample/admin.py

http://appfusedjango.googlecode.com/ · Python · 14 lines · 5 code · 3 blank · 6 comment · 0 complexity · 14c3c6de2c13f7310a3ae1f7db019f08 MD5 · raw file

  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. # Autor: aaloy
  4. # --------------------------------------------------------------------
  5. # Prop贸sito: Admin configuration
  6. #---------------------------------------------------------------------
  7. __author__="aaloy"
  8. __date__ ="$19/04/2009 23:07:39$"
  9. from django.contrib import admin
  10. from models import Photo
  11. admin.site.register(Photo)