Revert "Fix package output for now."

With better formatting of domain output, separation by heading is redundant.
Also, secondary header for page title might not be necessary with correct domain
output of package objects.
This commit is contained in:
Anthony Johnson 2015-05-29 20:09:36 -07:00
parent f133c7d603
commit 3653636673

View File

@ -21,21 +21,10 @@
{% endif %} {% endif %}
{% block content %} {% block content %}
{%- for obj_item in obj.children %}
{%- for item_type in obj.item_map.keys() %}
{{ item_type.title() }}
{{ "-" * item_type.title()|length }}
{%- for obj_item in obj.item_map.get(item_type, []) %}
{% macro render() %}{{ obj_item.render() }}{% endmacro %} {% macro render() %}{{ obj_item.render() }}{% endmacro %}
{{ render()|indent(0) }} {{ render()|indent(0) }}
{%- endfor %} {%- endfor %}
{%- endfor %}
{% endblock %} {% endblock %}