Files
mayan-edms/mayan/apps/common/templates/generic_detail_subtemplate.html
Roberto Rosario c0f460e1b2 Simple cleanups
2014-06-20 19:18:14 -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 %}