~stevanr/linaro-ci-dashboard/build_results_xml

« back to all changes in this revision

Viewing changes to dashboard/frontend/android_textfield_loop/models/android_textfield_loop.py

  • Committer: Stevan Radakovic
  • Date: 2012-09-04 12:00:07 UTC
  • mfrom: (30.2.22 chaining-intro)
  • Revision ID: stevan.radakovic@linaro.org-20120904120007-7fzhhvx8h547q7zb
Includes the logic and UI changes for chaining of the loop with the next_loop field in the Loop model. Reviewed by milo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    class Meta:
24
24
        app_label = 'android_textfield_loop'
25
25
 
 
26
    def save(self, *args, **kwargs):
 
27
        self.type = self.__class__.__name__
 
28
        super(self.__class__, self).save(*args, **kwargs)
 
29
 
26
30
    @staticmethod
27
31
    def can_chain_into():
28
32
        chain = [ANDROID_LOOP]