In my HTML, I want to have the text of a href to be the same as the variable each_files_configs. Whatever I try seems to come out as a literal.
  {% for each_files_configs in files_configs %}
    <p></p>
    <a href="{% url 'download_file' %}">document.write(each_files_configs)</a>
  {% endfor %}
I have also tried <var> and all it does is change the text to italics.
 
    