Disable forms that are not implemented yet

This commit is contained in:
2023-01-10 23:11:20 +01:00
parent 504f1c5fe6
commit 6ba70a133d
2 changed files with 4 additions and 4 deletions

View File

@ -38,9 +38,9 @@
<input name="blacklist_summary" type="text" class="form-control bg-dark border-dark text-muted" <input name="blacklist_summary" type="text" class="form-control bg-dark border-dark text-muted"
id="blacklist_summary" value="{% if blacklist_summary %}{{ blacklist_summary }}{% endif %}"> id="blacklist_summary" value="{% if blacklist_summary %}{{ blacklist_summary }}{% endif %}">
<label for="blacklist_content" class="col-sm-6 col-form-label">Blacklist - Content</label> <label for="blacklist_content" class="col-sm-6 col-form-label">Blacklist - Content (Not implemented yet)</label>
<input name="blacklist_content" type="text" class="form-control bg-dark border-dark text-muted" <input name="blacklist_content" type="text" class="form-control bg-dark border-dark text-muted"
id="blacklist_content" value="{% if blacklist_content %}{{ blacklist_content }}{% endif %}"> id="blacklist_content" value="{% if blacklist_content %}{{ blacklist_content }}{% endif %}" disabled>
</div> </div>
</div> </div>

View File

@ -38,9 +38,9 @@
<input name="whitelist_summary" type="text" class="form-control bg-dark border-dark text-muted" <input name="whitelist_summary" type="text" class="form-control bg-dark border-dark text-muted"
id="whitelist_summary" value="{% if whitelist_summary %}{{ whitelist_summary }}{% endif %}"> id="whitelist_summary" value="{% if whitelist_summary %}{{ whitelist_summary }}{% endif %}">
<label for="whitelist_content" class="col-sm-6 col-form-label">Whitelist - Content</label> <label for="whitelist_content" class="col-sm-6 col-form-label">Whitelist - Content (Not implemented yet)</label>
<input name="whitelist_content" type="text" class="form-control bg-dark border-dark text-muted" <input name="whitelist_content" type="text" class="form-control bg-dark border-dark text-muted"
id="whitelist_content" value="{% if whitelist_content %}{{ whitelist_content }}{% endif %}"> id="whitelist_content" value="{% if whitelist_content %}{{ whitelist_content }}{% endif %}" disabled>
</div> </div>
</div> </div>