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
| # == Schema Information | |
| # | |
| # Table name: sysdba.INF_FUND | |
| # | |
| # INF_FUNDID :string(12) not null, primary key | |
| # CREATEUSER :string(12) | |
| # CREATEDATE :datetime | |
| # MODIFYUSER :string(12) | |
| # MODIFYDATE :datetime | |
| # FUND_CODE :string(32) |
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
| # == Schema Information | |
| # | |
| # Table name: sysdba.INF_ACC_IA_INVESTMENT | |
| # | |
| # INF_ACC_IA_INVESTMENTID :string(12) not null | |
| # INF_ACC_INVEST_ACCOUNTID :string(12) not null | |
| # CREATEUSER :string(12) | |
| # CREATEDATE :datetime | |
| # MODIFYUSER :string(12) | |
| # MODIFYDATE :datetime |
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
| # == Schema Information | |
| # | |
| # Table name: sysdba.INF_ACC_IA_INVESTMENT | |
| # | |
| # INF_ACC_IA_INVESTMENTID :string(12) not null | |
| # INF_ACC_INVEST_ACCOUNTID :string(12) not null | |
| # CREATEUSER :string(12) | |
| # CREATEDATE :datetime | |
| # MODIFYUSER :string(12) | |
| # MODIFYDATE :datetime |
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
| # == Schema Information | |
| # | |
| # Table name: email_ques | |
| # | |
| # id :integer not null, primary key | |
| # job_que_id :integer | |
| # to_field :string(255) | |
| # subject_field :string(255) | |
| # body_field :text | |
| # send_status :text |
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
| <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %> | |
| <%= devise_error_messages! %> | |
| <div> | |
| <%= f.label :name %><br /> | |
| <%= f.text_field :name %> | |
| </div> | |
| <div><%= f.label :email %><br /> | |
| <%= f.email_field :email, :autofocus => true %></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
| file_path = 'public/uploads/' + filename | |
| marketer = Marketer.find(marketer_id) | |
| CSV.foreach(file_path, headers: true) do |row| | |
| MarketerImport.create! row.to_hash.merge(new_user: marketer.slx_id) | |
| end |
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
| <span id="fund_<%= fund.id %>_MARKETING_CODE" class="rest-in-place" data-url="/funds/<%= fund.id %>" data-object="fund" data-attribute="MARKETING_CODE"> | |
| <%= fund.MARKETING_CODE.blank? ? 'Click here to edit' : fund.MARKETING_CODE %> | |
| </span> |
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
| rails g scaffold_controller Model |
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
| rails generate kaminari:views bootstrap |
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
| # standard input with with defined by span and a stylized hint and defined Lable | |
| <%= f.input :listing_title, hint: '<strong>Pick a descriptive title to really sell your place!</strong>', input_html: { class: 'span7' }, label: 'Listing Title' %> | |
| # Standard Input complete defaults pulled from the associated model | |
| <%= f.input :listing_title %> | |
| # Submit Button with modified bootstrap style and Text | |
| <%= f.button :submit , :class => 'btn btn-medium btn-success', value: 'Post It!' %> | |
| # Dynamic Dropdown Select Box using values from a model |