Bernard Valentin
Bernard Valentin
Hi, When an existing trail is edited, the default category selected in the settings is re-applied automatically. The category from the trail record should be used instead. Thank you!
Hi, For some time I wondered how the "Completed / Not completed" flag was set then I figured out it required me to create an entry in the Summit Book....
Hi, Due to [this function](https://github.com/Duke-GCB/calrissian/blob/master/calrissian/report.py#L39C1-L44C24), when `elapsed_seconds` is 0, `elapsed_hours` is `None`: ```python def elapsed_hours(self): elapsed_seconds = self.elapsed_seconds() if elapsed_seconds: return elapsed_seconds / SECONDS_PER_HOUR else: return None ``` And when...