- Add `linkify` keyword argument to all columns, to allow wrapping the content in a `<a>` tag.
It accepts one of these ways to define the link:
- `True` to use the record return value of `record.get_absolute_url()`,
- a callable to use its return value
- a dict which is passed on to `django.urls.reverse()`
- a (viewname, args) or (viewname, kwargs)-tuple which is also passed on to `django.urls.reverse()`.
Implementation should be backwards compatible, so all use of `LinkColumn` and `RelatedLinkColum` should still work. [590](https://github.com/jieter/django-tables2/pull/590)