12 lines
261 B
HTML
12 lines
261 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Autostart Persistence</h1>
|
|
|
|
{% for section in content %}
|
|
<h2>{{ section.title }}</h2>
|
|
<pre>{{ section.content }}</pre>
|
|
{% endfor %}
|
|
|
|
<a href="/persistence">Back to Persistence Submenu</a>
|
|
{% endblock %}
|