-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d275048
commit 88c6f96
Showing
3 changed files
with
12 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
{% trans_default_domain domain|default('general') %} | ||
{% if inherited %} | ||
{% if currentTeam.children.count and team == currentTeam %} | ||
<div class="alert alert-info" role="alert"> | ||
{% trans %}inheritance.infoText.inherited{% endtrans %} | ||
</div> | ||
{% elseif team != currentTeam and used %} | ||
<div class="alert alert-info" role="alert"> | ||
{% trans %}inheritance.infoText.active.long{% endtrans %} | ||
</div> | ||
{% elseif team != currentTeam %} | ||
<div class="alert alert-danger" role="alert"> | ||
{% trans %}inheritance.infoText.inactive.long{% endtrans %} | ||
</div> | ||
{% endif %} | ||
<div class="card card-outlined bg-primary-50 block flex-none mb-5" role="alert"> | ||
<p class="text-sm"> | ||
{% if currentTeam.children.count and team == currentTeam %} | ||
{% trans %}inheritance.infoText.inherited{% endtrans %} | ||
{% elseif team != currentTeam and used %} | ||
{% trans %}inheritance.infoText.active.long{% endtrans %} | ||
{% elseif team != currentTeam %} | ||
{% trans %}inheritance.infoText.inactive.long{% endtrans %} | ||
{% endif %} | ||
</p> | ||
</div> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters