diff options
author | Prabhu Ramachandran | 2011-11-25 02:24:34 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-25 02:24:34 +0530 |
commit | b4023e17d6f97e51ffde740c17d19630b5a9c2d1 (patch) | |
tree | 78b015a1d6e9ffa1d4fbf673b6ef21491833b564 /templates/base.html | |
parent | 3375839bfc531329adc45994659be382295038b6 (diff) | |
download | online_test-b4023e17d6f97e51ffde740c17d19630b5a9c2d1.tar.gz online_test-b4023e17d6f97e51ffde740c17d19630b5a9c2d1.tar.bz2 online_test-b4023e17d6f97e51ffde740c17d19630b5a9c2d1.zip |
ENH: First cut of CSS for pages.
This is largely taken from other sites and looks reasonable for now.
Also added links to the admin page from the
monitor/user_data/grade_user.
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html index 22e9ba2..c2bbabb 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,15 +8,18 @@ {% endblock %} </title> {% block meta %} -{% endblock%} +{% endblock %} +<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/base.css" type="text/css" /> +{% block css %} +{% endblock %} {% block script %} {% endblock %} </head> <body {% block onload %}{% endblock %}> - + <div class=box> {% block content %} {% endblock %} - + </div> </body> -</html>
\ No newline at end of file +</html> |