The page which shows the details of a particular workshop is missing its title. If you visit the page now, it will show something like this :
This can be corrected easily as a block for title has been added inside the base.html
file. Now corresponding inside the event/workshop_detail.html
if title block is added it will display the title as such.
{% block title %}
{{workshop.name}}
{% endblock %}
After saving this, if you reload the website, you would be able to see the tittle there.