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
| #!/usr/bin/env python3 | |
| """ | |
| Execute resticprofiles if possible and at most once daily. | |
| Can and should be polled until successful e.g.: | |
| # try every 10 minutes to backup if not done yet | |
| */10 * * * * daily.py nextcloud >> /var/log/backup_nextcloud.log 2>&1 | |
| Last backup ist tracked with a lock file next to daily.py for each repository. |
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
| # Include formset as crispy forms layout object | |
| self.helper.layout = Layout( | |
| Div( | |
| Field('my_field'), | |
| Formset('my_formset', 'my_formset_helper'), | |
| Button('Add New', 'add-extra-formset-fields'), | |
| ), | |
| ) |