generated from MinBZK/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix copy on decision tree modal close (#245)
- Loading branch information
Showing
8 changed files
with
53 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PROJECT VERSION\n" | ||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" | ||
"POT-Creation-Date: 2024-10-09 19:49+0200\n" | ||
"POT-Creation-Date: 2024-10-10 11:00+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -147,6 +147,10 @@ msgstr "" | |
msgid "An error occurred. Please try again later" | ||
msgstr "" | ||
|
||
#: amt/site/templates/layouts/base.html.j2:11 | ||
msgid "Algorithmic Management Toolkit (AMT)" | ||
msgstr "" | ||
|
||
#: amt/site/templates/macros/tasks.html.j2:14 | ||
msgid "Todo" | ||
msgstr "" | ||
|
@@ -339,3 +343,7 @@ msgstr "" | |
msgid "Create Project" | ||
msgstr "" | ||
|
||
#: amt/site/templates/projects/new.html.j2:152 | ||
msgid "Copy results and close" | ||
msgstr "" | ||
|
Binary file not shown.
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
Binary file not shown.
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
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 |
---|---|---|
|
@@ -144,19 +144,16 @@ | |
</div> | ||
</div> | ||
|
||
<div id="decision-tree-modal" class="minbzk-modal display-none"> | ||
<div class="modal-underlay" onclick="amt.closeModal()"></div> | ||
<div class="modal-content"> | ||
<p class="utrecht-button-group"> | ||
<button id="close-decision-tree-modal-button" type="button" class="flex utrecht-button utrecht-button--secondary-action rvo-layout-row rvo-layout-gap--md utrecht-button--rvo-md rvo-link--no-underline utrecht-button-group__align-right" | ||
onclick="amt.closeModal()"> | ||
<span class="utrecht-icon rvo-icon rvo-icon-kruis rvo-icon--md rvo-icon--zwart" | ||
role="img"></span> | ||
</button> | ||
<div id="app"> | ||
<script src="https://unpkg.com/[email protected]/index.js"></script> | ||
</div> | ||
</p> | ||
</div> | ||
</div> | ||
<div id="decision-tree-modal" class="minbzk-modal display-none"> | ||
<div class="modal-underlay" onclick="amt.closeModal()"></div> | ||
<div class="modal-content"> | ||
<p class="utrecht-button-group"> | ||
<button id="close-decision-tree-modal-button" type="button" class="flex utrecht-button utrecht-button--secondary-action rvo-layout-row rvo-layout-gap--md utrecht-button--rvo-md rvo-link--no-underline utrecht-button-group__align-right" | ||
onclick="amt.closeModalSave()">{% trans %}Copy results and close{% endtrans %}</button> | ||
<div id="app"> | ||
<script src="https://unpkg.com/[email protected]/index.js"></script> | ||
</div> | ||
</p> | ||
</div> | ||
</div> | ||
{% endblock content %} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -x | ||
|
||
docker compose up -d | ||
|
||
sleep 1 | ||
open http://0.0.0.0:8070 |