Update header on application settings page
This commit is contained in:
9
templates/portfolios/applications/base.html
Normal file
9
templates/portfolios/applications/base.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% extends "portfolios/base.html" %}
|
||||
|
||||
{% block portfolio_header %}
|
||||
<div class='portfolio-header'>
|
||||
<div class='portfolio-header__name'>
|
||||
{{ secondary_breadcrumb }}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
@@ -1,7 +1,9 @@
|
||||
{% extends "portfolios/base.html" %}
|
||||
{% extends "portfolios/applications/base.html" %}
|
||||
|
||||
{% from "components/text_input.html" import TextInput %}
|
||||
|
||||
{% set secondary_breadcrumb = application.name + ' Application Settings' %}
|
||||
|
||||
{% block portfolio_content %}
|
||||
|
||||
<form method="POST" action="{{ url_for('portfolios.edit_application', portfolio_id=portfolio.id, application_id=application.id) }}">
|
||||
|
||||
Reference in New Issue
Block a user