- menu changes to allow for partners - partner views and forms now in partner_forms.py and partner_views.py - Introduction of services layer - Allow all configuration to handle partner configurations, and adaptation of caching to allow for this
19 lines
658 B
HTML
19 lines
658 B
HTML
{% extends "base.html" %}
|
|
{% from "macros.html" import render_field %}
|
|
{% block title %}Register Partner Service{% endblock %}
|
|
|
|
{% block content_title %}Register Partner Service{% endblock %}
|
|
{% block content_description %}Register Partner Service{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
{{ form.hidden_tag() }}
|
|
{% set disabled_fields = [] %}
|
|
{% set exclude_fields = [] %}
|
|
{% for field in form %}
|
|
{{ render_field(field, disabled_fields, exclude_fields) }}
|
|
{% endfor %}
|
|
<button type="submit" class="btn btn-primary">Register Partner Service</button>
|
|
</form>
|
|
{% endblock %}
|