Add missing template.
This commit is contained in:
parent
0565f9b308
commit
35a8de7f07
1 changed files with 49 additions and 0 deletions
49
www/conservancy/templates/assignment/base_assignment.html
Normal file
49
www/conservancy/templates/assignment/base_assignment.html
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
{% extends "base_conservancy.html" %}
|
||||||
|
{% block category %}Copyright Assignment{% endblock %}
|
||||||
|
{% block head %}
|
||||||
|
{{ block.super }}
|
||||||
|
<style>
|
||||||
|
label { display: block; }
|
||||||
|
input[type=text], input[type=email], input[type=date], select {
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
|
input[type=checkbox] { width: auto; }
|
||||||
|
span[class=helptext] {
|
||||||
|
display: block;
|
||||||
|
font-size: 12px;
|
||||||
|
font-style: italic;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
#id_place_of_residence {
|
||||||
|
height: 5rem;
|
||||||
|
}
|
||||||
|
form ul {
|
||||||
|
margin: -1em 0 0;
|
||||||
|
}
|
||||||
|
form li {
|
||||||
|
list-style: none;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 35rem;
|
||||||
|
height: 8rem;
|
||||||
|
padding: 0.25rem;
|
||||||
|
}
|
||||||
|
#id_full_name, #id_email {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 25rem;
|
||||||
|
}
|
||||||
|
#id_agreement_terms {
|
||||||
|
height: 20rem;
|
||||||
|
}
|
||||||
|
.helptext {
|
||||||
|
max-width: 35rem;
|
||||||
|
}
|
||||||
|
.errorlist {
|
||||||
|
margin: 1rem 0 0.25rem;
|
||||||
|
color: #e7040f;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
Loading…
Reference in a new issue