Files
mayan-edms/mayan/apps/document_indexing/templates/document_indexing/node_details.html
2016-03-15 04:11:44 -04:00

26 lines
546 B
HTML

{% extends 'appearance/base.html' %}
{% load i18n %}
{% load navigation_tags %}
{% block title %}{% include 'appearance/calculate_form_title.html' %}{% endblock %}
{% block content %}
{% if title %}
<h3>{{ title }}</h3>
<hr>
{% endif %}
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-4">
{{ navigation }}
</div>
<div class="col-xs-12 col-sm-12 col-md-8">
{% include 'appearance/generic_list_subtemplate.html' %}
</div>
</div>
{% endblock %}