coderedcorp/coderedcms

Add Tables number Row And Collumns

richierh opened this issue · 1 comments

I want to know if there is a way to make template of creating Table available for certain number of row and collumns without changing the default template . I want to have other template of tabling with certain number of rows and collumns

Our table block is currently not customizable. It is actually a very thin wrapper around the stock Wagtail table block:

class TableBlock(BaseBlock):
table = WagtailTableBlock()
class Meta:
template = "coderedcms/blocks/table_block.html"
icon = "table"
label = "Table"

I'd recommend looking into the Wagtail Table block, and possibly try asking on the Wagtail slack channel (https://wagtail.org/slack/) to see if others have had success customizing it.