Move files into applications/fragments

This commit is contained in:
leigh-mil 2019-10-21 13:57:58 -04:00
parent 0f0d9464d8
commit f76fd0b567
4 changed files with 11 additions and 12 deletions

View File

@ -12,9 +12,9 @@
new_member_form,
action) %}
<div class="subheading" id="application-members">
<h3 id="application-members">
{{ 'portfolios.applications.settings.team_members' | translate }}
</div>
</h3>
{% if g.matchesPath("application-members") %}
{% include "fragments/flash.html" %}
@ -143,7 +143,7 @@
</td>
<td>
{% for env in member.environment_roles %}
{{ env.environment_name }}{% if not env == member.environment_roles[-1]%},{% endif %}
{{ env.environment_name }}<br>
{% endfor %}
</td>
<td>

View File

@ -2,7 +2,7 @@
{% extends "applications/base.html" %}
{% from "fragments/members.html" import MemberManagementTemplate with context %}
{% from "applications/fragments/members.html" import MemberManagementTemplate with context %}
{% set secondary_breadcrumb = 'portfolios.applications.new_application_title' | translate %}
{% block portfolio_header %}
@ -37,4 +37,3 @@
</span>
{% endblock %}

View File

@ -2,8 +2,8 @@
{% from "components/alert.html" import Alert %}
{% from "components/delete_confirmation.html" import DeleteConfirmation %}
{% from "fragments/environments.html" import EnvironmentManagementTemplate %}
{% from "fragments/members.html" import MemberManagementTemplate with context %}
{% from "applications/fragments/environments.html" import EnvironmentManagementTemplate with context %}
{% from "applications/fragments/members.html" import MemberManagementTemplate with context %}
{% from "components/modal.html" import Modal %}
{% from "components/pagination.html" import Pagination %}
{% from "components/save_button.html" import SaveButton %}