{% extends "base.html" %} {% import "macros/star.html" as star_macros %} {% import "macros/planet.html" as planet_macros %} {% import "macros/create_star.html" as create_macro %} {% block content %} {{group.groupname}} Description: {{group.description}} {{ create_macro.create_star(page, form, active_persona) }} {% for star in page.stars %} {% for planet in star.planets %} {{ planet_macros.planet(planet, False)}} {% endfor %} {{ star_macros.star(star.content) }} {% endfor %} {% endblock %}
Description: {{group.description}}