9 lines
271 B
HTML
9 lines
271 B
HTML
{% extends 'dashboard.html' %}
|
|
|
|
{% block head_title %}Update Site Settings | {% endblock %}
|
|
|
|
{% block content %}
|
|
{% url 'dashboard:config' as back_url %}
|
|
{% include 'dashboard/partials/_form.html' with back_url=back_url object='Site Settings' form=form %}
|
|
{% endblock %}
|