I set a Django view+url that points to a HTML form. The HTML file is linked to two stylesheets using @import. When I visit the page, terminal tells me that GET requests are sent to the two CSS files, but the page is rendered as pure HTML without any CSS.
Here's the code that links to the stylesheet in the HTML file:
<head>
<title>Register</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
@import url("./css/common.css");
@import url("./css/desktop.css");
</style>
</head>
Here's the relevant code snippet from the view:
return render_to_response("signup.html", {'form': form,}, RequestContext(request))
Will post more code if asked for it. This is really bugging me. Thanks in advance!