Guest User

Untitled

a guest
Oct 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. class MeuModel(Model):
  2.  
  3.   nome = model.CharField('Nome', max_length=80)
  4.  
  5.   def _edicao(self):
  6.     return '''<a href="#" onclick="alert('Ok');">Acao</a>''';
  7.  
  8.   _edicao.short_description = u'Edição'
  9.   _edicao.allow_tags = True
  10.  
  11.  
  12. #O Admin
  13. class MeuAdmin(admin.ModelAdmin):
  14.   fields = ('nome','_edicao',)
Add Comment
Please, Sign In to add comment