I need to include a base64 encoded image in JSON format into a Django HTML template.
What is the best way to do this?
<img src="R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp(Some 64 bit image);base64 />
How can I properly translate this code snippet into my Django template?
I have already set up a body tag to receive the data and a style tag for CSS styling purposes.