WIP: Add ImageField to table. Advances #57.
Merge request reports
Activity
added part::frontend prio::2 source::customer type::feature labels
added 337 commits
-
e5ef8671...ddbbefa1 - 336 commits from branch
master
- f4f3a649 - Merge branch 'master' into issue57
-
e5ef8671...ddbbefa1 - 336 commits from branch
3 3 from django.utils.html import format_html 4 4 5 5 6 class ImageColumn(tables.Column): 7 def render(self, value): 8 return format_html('<img src="{}" />', value) 9 10 11 6 class PersonsTable(tables.Table): 12 7 class Meta: 13 8 attrs = {'class': 'table table-striped table-bordered table-hover table-responsive-xl'} 14 9 15 photo = ImageColumn("{% cropped_thumbnail person 'photo_cropping' max_size='20x30' %}") 10 photo = tables.TemplateColumn("<img src='/media/{{ person.photo }}' />")
Please register or sign in to reply