davidmeadow
New Member
I am using the Django template system in my app, and in the child template I reference the {% extends "base.html" %} accordingly, though when redenring the template, it only comes up with the html tags and no css styling-thus not picking up the base.html template altogether.Please advise on what I am doing wrong?. Could it be an issue with it not finding the location of my base.html template?This is the child template code:\[code\]{% extends "base.html" %}{% block content %} {% for field in form %}{{ form }} {% endfor %} {% endblock %}\[/code\]This is the base.html template code (relevant parts):\[code\]<div id="content"><h2> Page heading - This is where the functionality goes... </h2> <FIELDSET><INPUT class=Test value="http://stackoverflow.com/questions/12799145/Test" type=submit></FIELDSET> {% block primary %}{% endblock %}</div>\[/code\]Please let me know if you need any firther information to solve this issue.-I will add the views.py this evening (London time)--Thanks