~eltonplima/sqm/devel

« back to all changes in this revision

Viewing changes to quote/admin.py

  • Committer: Elton Pereira de Lima
  • Date: 2009-11-12 18:35:20 UTC
  • mfrom: (55.1.1 sqm_templates)
  • Revision ID: elton@ti-host01-20091112183520-kp84zuy105a9u53b
Add templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.contrib import admin
 
2
from sqm.quote.models import Quote
 
3
 
 
4
#class CommentAdmin(admin.ModelAdmin):
 
5
#    pass
 
6
 
 
7
admin.site.register(Quote)
 
8