I have a bib tex file with a lot of references (books with author, name, year etc.), which I want to import within the django admin and edit them before saving.
At the moment I have a model with a file, where all resources get saved, when I click save. Afterwards I can go to the admin panel, open each reference and edit them manually.
Does somebody know how to load the information into the admin page from the file, so I can edit them before I save the information?
Should look like this. Question would be my file uploader and each Choice (reference) would be prefilled with information from the file. There should not be a foreign key between the file and the references.:
Thanks in advance.