Files
mayan-edms/mayan/apps/common/templates/generic_detail_subtemplate.html
2014-06-20 18:30:53 -04:00

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 %}