add test_profile template
This commit is contained in:
parent
7b2642c5c0
commit
a612e66b62
33
itf/templates/test/person_form.html
Normal file
33
itf/templates/test/person_form.html
Normal 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 %}
|
Loading…
Reference in New Issue
Block a user