(self, current_coords)
| 180 | return self.get_template('index') |
| 181 | |
| 182 | def track(self, current_coords): |
| 183 | self.options = self.get_options() |
| 184 | self.options['current_url'] = '/track' |
| 185 | self.options['current_coords'] = current_coords |
| 186 | self.options['json'] = simplejson.dumps(self.options) |
| 187 | return self.get_template('track') |
| 188 | |
| 189 | def command(self, current_coords): |
| 190 | self.options = self.get_options() |
no test coverage detected