I receive a csv daily which I import to Mariadb and clean the fields with SQL statements for example in the column mark if "SANSUN" comes with an UPDATE I correct it to "SAMSUNG" and so on with hundreds and hundreds of sentences until correct the whole file.
My intention is to give a web interface type CRUD to this task but I do not know how to approach it in Django. I'm stuck when I create the model and import the csv, the process of updating fields that I do currently in SQL I do not know if I have to do it in a view with all sentences of the ORM (python) of DJANGO grouped in a single view or some Another way?