Upload files to "templates"
This commit is contained in:
@ -1,5 +1,18 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Rule Creation</h1>
|
<h1>Rule Creation Resources</h1>
|
||||||
<p>Track and manage your custom detection and prevention rules here.</p>
|
|
||||||
|
{% for section in content %}
|
||||||
|
<div class="content-box">
|
||||||
|
<h2>{{ section.title }}</h2>
|
||||||
|
<p>{{ section.content }}</p>
|
||||||
|
<ul>
|
||||||
|
{% for link in section.links %}
|
||||||
|
<li><a href="{{ link.url }}" target="_blank">{{ link.name }}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Reference in New Issue
Block a user