This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrapper"> | |
| <img class="logolo" src="https://daff.dev/mechadash/logo.gif"> | |
| <div class="content" id="a1"> | |
| <h2> | |
| סקר ההוראה הגדול | |
| </h2><br/> | |
| שלום לכם וברוכים לסקר ההוראה הגדול. | |
| באמצעות השאלות הקרובות שתשאלו נוכל לבנות את מערך הידע שיאפשר שיפור אינקרמנטלי במערכת ההחלטות הפדגוגיות אשר בונות את הקרקע לשינוי הראדיקלי הצפוי במערכת החינוך הירושלמית. | |
| <button onclick="show(2)">התחל</button> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # capture every XXXX_just_later call and create a JustLaterJob | |
| class ApplicationRecord < ActiveRecord::Base | |
| self.abstract_class = true | |
| def method_missing(method, *args, &block) | |
| ms = method.to_s | |
| if ms.end_with?('_just_later') | |
| a = ms[0...-11] | |
| if respond_to?(a) | |
| JustLaterJob.perform_later(self, a, *args) | |
| end |
OlderNewer