Hi Chris,
Thanks. I run otree update_my_code and it says "Done. all files checked." My otree version should be the latest (5.2.8), though I am still using self format.
The code including the template is shown below. Note that the page works fine if not including the template so other code shouldn't matter. (SF_AutoS is the project name)
{% include "SF_AutoS/Instructions_AutoS.html" %}
In Instructions_AutoS.html I only have the following:
{% extends "global/Page.html" %}
{% load otree static %}
{% block content %}
<div class="card bg-light">
<div class="card-body">
<h3>
Instructions
</h3>
<p>
These are the instructions for the game....
</p>
</div>
</div>
{% endblock %}