Downlad VirtualBox, follow the setup instructions. Then click Machine => Add, select the image you received from instructors, then start it. For username enter 'user7', for password - 'user7' (without quotes).
This file contains hidden or 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
| create or replace view view_training_planned_reported_data_export as | |
| select `tbl_flagship_activity_training`.`training_id` AS `training_id`, | |
| `tbl_flagship_activity_training`.`training_type` AS `training_type`, | |
| json_unquote( | |
| json_extract( | |
| `tbl_flagship_activity_training`.`training_info`, | |
| '$.tr_type' | |
| ) | |
| ) AS `tr_type`, | |
| `tbl_flagship_activity_training`.`status` AS `training_status`, |
This file contains hidden or 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
| create definer = root@`%` view view_training_planned_reported_data_export as | |
| select `crpcoreix`.`tbl_flagship_activity_training`.`training_id` AS `training_id`, | |
| `crpcoreix`.`tbl_flagship_activity_training`.`training_type` AS `training_type`, | |
| json_unquote(json_extract(`crpcoreix`.`tbl_flagship_activity_training`.`training_info`, | |
| '$.tr_type')) AS `tr_type`, | |
| `crpcoreix`.`tbl_flagship_activity_training`.`training_participant` AS `training_participant_id`, | |
| `crpcoreix`.`tbl_flagship_activity_training`.`status` AS `training_status`, | |
| `crpcoreix`.`tbl_flagship_activity_training_report`.`status` AS `report_status`, | |
| `tbl_user_new |
This file contains hidden or 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
| <figure> | |
| <picture> | |
| <source srcset="/images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash-small.webp 320w, | |
| /images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash-medium.webp 640w, | |
| /images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash.webp 1000w" | |
| sizes="(max-width: calc(1000px + 2 * 2.4rem)) calc(100vw - 2 * 2.4rem), 1000px" type="image/webp"> | |
| <img src="/images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash.jpg" data-src="auto" srcset="/images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash-small.jpg 320w, | |
| /images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash-medium.jpg 640w, | |
| /images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash.jpg 1000w" data-srcset="/images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash-small.jpg 320w, | |
| /images/uploads/dimitry-anikin-R77kt9VjPjA-unsplash-medium.jpg 640w, |
This file contains hidden or 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
| import numpy as np | |
| from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas | |
| import matplotlib.pyplot as plt | |
| import io | |
| @app.route('/drawplot') | |
| def drawplotinput(): | |
| # форма загрузки файла | |
| return render_template('input.html') |
This file contains hidden or 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
| <tr v-for="(cropcomp, index) in cropcomposition" :key="index" :value="cropcomp"> | |
| <td colspan="2" style="width: 70%"> | |
| <select style="width: 90%" v-model="cropcomposition[index].woodspecies_id"> | |
| <option value="">{{dict.choose}}</option> | |
| <option | |
| v-for="compose in journal.composition" | |
| :value="compose.woodspecies_id" | |
| :key="compose.woodspecies_id" | |
| >{{compose.woodname}}</option> | |
| </select> |