Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #381. Though, I'm not sure this is an optimal solution.
The problem with the current table is that first a 5-columns-wide is created (was changed in d437882 to provide a non-JavaScript version of the table). The DataTables script, however, has 6 columns defined, and this doesn't mix well. This causes the missing cell in the table footer... and other things, like the missing "Subtitle" header.
The simplest fix of all would be to just insert the missing column between Date and Subtitle again. But then the non-javascript version of the table has an empty column to the left, and an empty column between Date and Subtitle.
What this PR does instead is created two copies of the table: one with 4 columns intended for non-JS, and one with 6 columns intended for JS. The second one is hidden by default, but once the page is loaded and JavaScript is available, it hides the first table and makes the second one visible.