Skip to content
Snippets Groups Projects

Resolve "exceeded visits list & unfinished visits list"

Merged Piotr Gawron requested to merge 146-exceeded-visits-list-unfinished-visits-list into master
4 files
+ 39
10
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -8,3 +8,17 @@ def bool_to_yes_no(val):
@@ -8,3 +8,17 @@ def bool_to_yes_no(val):
return "YES"
return "YES"
else:
else:
return "NO"
return "NO"
 
 
 
def flying_team_to_str(flying_team):
 
result = ""
 
if flying_team is not None:
 
result = unicode(flying_team)
 
return result
 
 
 
def location_to_str(location):
 
result = ""
 
if location is not None:
 
result = unicode(location.name)
 
return result
 
\ No newline at end of file
Loading