How can I get at a widget's template text. I first tried TableForm.template, but it's a type, not a string. Lovely metaclass black magic.
I'm trying to create a slightly varied TableForm, but I want to build
on the existing template so when it's changed or updated, my variant is
updated also. Something like this:
class MyTableForm(TableForm):
template = "<a href="">blah</a><br />" + TableForm.template
Of course this doesn't work. Any ideas?
Randall

