23 lines
563 B
HTML
23 lines
563 B
HTML
{% load i18n %}
|
|
|
|
{% block stylesheets %}
|
|
<style type="text/css">
|
|
#subform form textarea,
|
|
#subform form select option,
|
|
#subform form input,
|
|
#subform form select,
|
|
#subform form input { background: none; color: black; border: none; }
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if form %}
|
|
{% with 'true' as read_only %}
|
|
<div class="generic_subform">
|
|
{% include 'generic_form_subtemplate.html' %}
|
|
</div>
|
|
{% endwith %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|