| 1234567891011121314151617181920 |
- {% extends "base_generic.html" %}
- {% load static %}
- {% block content %}
- <div class="container" style="margin-top: 20px">
- {{ about_text | safe}}
- {{ object.bautraeger }}
- {{ object }}
- {% if context %}
- {{ context | safe}}
- {% endif %}
- </div>
- {% endblock %}
|