add test_profile template

This commit is contained in:
Sanj 2012-04-21 16:41:59 +05:30
parent 7b2642c5c0
commit a612e66b62

View File

@ -0,0 +1,33 @@
{% extends 'noel/base.html' %}
{% load crispy_forms_tags %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/noel/inner.css" type="text/css" />
<link rel="stylesheet" href="/static/css/register.css" type="text/css" />
<!-- note that there's also blue.uni-form.css and dark.uni-form.css available if you want to try changing defaults up -->
<link rel="stylesheet" href="/static/uni_form/uni-form.css" type="text/css" />
<link rel="stylesheet" href="/static/uni_form/default.uni-form.css" type="text/css" />
<!-- uni-form JS library, optional -->
<script src="/static/uni_form/uni-form.jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('form.uniForm').uniform();
});
</script>
{% endblock %}
{% block content %}
<div id="centerInner">
<div id="shadow">
</div>
<div id="searchContainer">
<form id="formItf" action="" class="uniForm" method="POST">
<table>
{{ form|crispy }}
</table>
</form>
</div>
</div>
{% endblock %}