Files
mayan-edms/apps/common/templates/generic_detail.html
2011-02-05 03:14:36 -04:00

61 lines
1.6 KiB
HTML
Executable File

{% extends "base.html" %}
{% load i18n %}
{% block title %} :: {% with "true" as read_only %}{% with "true" as striptags %}{% include "calculate_form_title.html" %}{% endwith %}{% endwith %}{% endblock %}
{% block javascript %}
<script type="text/javascript">
$(function() {
$("#subform form :input").each(function() {
this.disabled = true;
});
});
</script>
{% endblock %}
{% block sidebar %}
{% for subtemplate in sidebar_subtemplates %}
{% include subtemplate %}
{% endfor %}
{% endblock %}
{% 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 %}
<div id="subform">
{% with "true" as read_only %}
{% include "generic_form_subtemplate.html" %}
{% endwith %}
</div>
{% for subtemplate in subtemplates %}
{% include subtemplate %}
{% endfor %}
{% for subtemplate in subtemplates_dict %}
{% with subtemplate.title as title %}
{% with subtemplate.object_list as object_list %}
{% with subtemplate.extra_columns as extra_columns %}
{% with subtemplate.hide_object as hide_object %}
{% with subtemplate.main_object as main_object %}
{% with subtemplate.hide_link as hide_link %}
{% include subtemplate.name %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endfor %}
{% endblock %}