(self, current_coords)
| 187 | return self.get_template('track') |
| 188 | |
| 189 | def command(self, current_coords): |
| 190 | self.options = self.get_options() |
| 191 | self.options['current_url'] = '/command' |
| 192 | self.options['current_coords'] = current_coords |
| 193 | return self.get_template('command') |
| 194 | |
| 195 | def get_template(self, file_name): |
| 196 | template = self.environment.get_template(file_name + '.html') |
no test coverage detected