Cant add math/science equation in the django-ckeditor outside django admin

Good day everyone! I'm hopping anyone has idea why its not working. Basically I used Django ckeditor as my WYSIWYG for my project. I tried it inside django admin and it is working fine. However, when I used it outside Django admin(in my template) I cant insert any equations. Its seems the textbox is disable. I cant put any value on it. It display only the placeholder equation(quadratic equation)

Inserting math equation

This is the template

enter image description here

This is my urls.py enter image description here

This is the models.py and forms.py enter image description here

enter image description here

This is in the base.html enter image description here

This is where I used the editor in my create_activity.html enter image description here

I tried to search for this issue but I found none.I hope anyone can help.

Back to Top