On the Reconstructions page, add a Child Languages section, with a "Child Languages" header, that displays a list of the child languages for the current language (Language.children). For each child language, display the name of the language (in the default orthography), and the selected orthography to display that language's data in.
This will require updating the Language model to add a children property, and adding example test data to test/fixtures/Languages.json.
Each item in the children array will have 2 properties: languageCID and orthographyCID. The orthographyCID property will need to be added to the Orthography model.
Blocked by #441.
On the Reconstructions page, add a Child Languages section, with a "Child Languages" header, that displays a list of the child languages for the current language (
Language.children
). For each child language, display the name of the language (in the default orthography), and the selected orthography to display that language's data in.This will require updating the Language model to add a
children
property, and adding example test data totest/fixtures/Languages.json
.Each item in the
children
array will have 2 properties:languageCID
andorthographyCID
. TheorthographyCID
property will need to be added to the Orthography model.