I want to make a Javascript table which is built with JSON. This JSON is sent from the backend ( using Django ) so it can be changed anytime. Name of the column would be the category. My JSON form looks like:
var data = [
{
"title": "Leadership",
"category": "humaninteraction"
},
{
"title": "Maintenance procedures",
"category": "procedures"
},
{
"title": "Situational Awareness",
"category": "environmentsituations"
},
{
"title": "Self-Criticism",
"category": "self"
},
{
"title": "Tools",
"category": "aircraft"
}];