effective_memberships 0.4.10 → 0.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/datatables/effective_applicant_endorsements_datatable.rb +1 -0
- data/app/datatables/effective_applicant_equivalences_datatable.rb +23 -0
- data/app/datatables/effective_applicant_experiences_datatable.rb +1 -0
- data/app/models/concerns/effective_memberships_applicant.rb +61 -10
- data/app/models/concerns/effective_memberships_category.rb +2 -0
- data/app/models/effective/applicant_endorsement.rb +1 -1
- data/app/models/effective/applicant_equivalence.rb +32 -0
- data/app/views/admin/applicants/_form.html.haml +4 -0
- data/app/views/admin/applicants/_form_transcripts.html.haml +12 -0
- data/app/views/admin/categories/_form_applicant_steps.html.haml +6 -0
- data/app/views/effective/applicant_endorsements/complete.html.haml +2 -3
- data/app/views/effective/applicant_endorsements/edit.html.haml +6 -7
- data/app/views/effective/applicant_references/complete.html.haml +2 -3
- data/app/views/effective/applicant_references/edit.html.haml +6 -7
- data/app/views/effective/applicants/_applicant.html.haml +2 -1
- data/app/views/effective/applicants/_course_amounts.html.haml +9 -17
- data/app/views/effective/applicants/_declarations.html.haml +9 -16
- data/app/views/effective/applicants/_demographics.html.haml +2 -9
- data/app/views/effective/applicants/_education.html.haml +6 -13
- data/app/views/effective/applicants/_endorsements.html.haml +6 -13
- data/app/views/effective/applicants/_equivalences.html.haml +3 -0
- data/app/views/effective/applicants/_experience.html.haml +18 -25
- data/app/views/effective/applicants/_files.html.haml +16 -23
- data/app/views/effective/applicants/_organization.html.haml +2 -9
- data/app/views/effective/applicants/_references.html.haml +6 -13
- data/app/views/effective/applicants/_stamp.html.haml +23 -30
- data/app/views/effective/applicants/_summary.html.haml +5 -0
- data/app/views/effective/applicants/_transcripts.html.haml +30 -0
- data/app/views/effective/applicants/_transcripts_requirements.html.haml +14 -0
- data/app/views/effective/applicants/billing.html.haml +6 -7
- data/app/views/effective/applicants/checkout.html.haml +2 -3
- data/app/views/effective/applicants/course_amounts.html.haml +48 -47
- data/app/views/effective/applicants/declarations.html.haml +10 -9
- data/app/views/effective/applicants/demographics.html.haml +6 -7
- data/app/views/effective/applicants/education.html.haml +16 -17
- data/app/views/effective/applicants/endorsements.html.haml +24 -16
- data/app/views/effective/applicants/equivalences.html.haml +24 -0
- data/app/views/effective/applicants/experience.html.haml +35 -36
- data/app/views/effective/applicants/files.html.haml +9 -8
- data/app/views/effective/applicants/organization.html.haml +10 -11
- data/app/views/effective/applicants/references.html.haml +17 -16
- data/app/views/effective/applicants/select.html.haml +25 -26
- data/app/views/effective/applicants/stamp.html.haml +16 -17
- data/app/views/effective/applicants/start.html.haml +4 -5
- data/app/views/effective/applicants/submitted.html.haml +9 -10
- data/app/views/effective/applicants/transcripts.html.haml +13 -0
- data/app/views/effective/fee_payments/_declarations.html.haml +9 -16
- data/app/views/effective/fee_payments/_demographics.html.haml +2 -9
- data/app/views/effective/fee_payments/_fee_payment.html.haml +2 -1
- data/app/views/effective/fee_payments/_organization.html.haml +2 -9
- data/app/views/effective/fee_payments/billing.html.haml +6 -7
- data/app/views/effective/fee_payments/checkout.html.haml +2 -3
- data/app/views/effective/fee_payments/declarations.html.haml +8 -9
- data/app/views/effective/fee_payments/demographics.html.haml +6 -7
- data/app/views/effective/fee_payments/organization.html.haml +10 -11
- data/app/views/effective/fee_payments/start.html.haml +23 -24
- data/app/views/effective/fee_payments/submitted.html.haml +2 -2
- data/db/migrate/01_create_effective_memberships.rb.erb +24 -0
- data/lib/effective_memberships/version.rb +1 -1
- metadata +10 -2
@@ -1,28 +1,27 @@
|
|
1
1
|
= render 'layout' do
|
2
2
|
= render 'effective/applicants/content', resource: resource
|
3
3
|
|
4
|
-
|
5
|
-
.
|
6
|
-
%p Should your application be approved, you are eligible to receive a Professional Stamp.
|
4
|
+
= card do
|
5
|
+
%p Should your application be approved, you are eligible to receive a Professional Stamp.
|
7
6
|
|
8
|
-
|
7
|
+
%p Please confirm your name as it should appear on any Professional Stamp.
|
9
8
|
|
10
|
-
|
11
|
-
|
9
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
10
|
+
= f.hidden_field :id
|
12
11
|
|
13
|
-
|
14
|
-
|
15
|
-
|
12
|
+
= f.fields_for(:stamps, f.object.stamp) do |fs|
|
13
|
+
= fs.hidden_field :applicant_id
|
14
|
+
= fs.hidden_field :applicant_type
|
16
15
|
|
17
|
-
|
18
|
-
|
16
|
+
= fs.hidden_field :user_id
|
17
|
+
= fs.hidden_field :user_type
|
19
18
|
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
= fs.hidden_field :price
|
20
|
+
= fs.hidden_field :tax_exempt
|
21
|
+
= fs.hidden_field :qb_item_name
|
23
22
|
|
24
|
-
|
23
|
+
= render 'effective/stamps/fields', f: fs
|
25
24
|
|
26
|
-
|
25
|
+
%p Stamps will be processed after approval of this application.
|
27
26
|
|
28
|
-
|
27
|
+
= f.save 'Save and Continue'
|
@@ -1,11 +1,10 @@
|
|
1
1
|
= render 'layout' do
|
2
2
|
= render 'effective/applicants/content', resource: resource
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
=
|
7
|
-
|
8
|
-
= f.save 'Save and Continue'
|
4
|
+
= card do
|
5
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
6
|
+
= f.hidden_field :id
|
7
|
+
= f.save 'Save and Continue'
|
9
8
|
|
10
9
|
-# .card
|
11
10
|
-# .card-body
|
@@ -12,16 +12,15 @@
|
|
12
12
|
= render 'effective/applicants/missing_info', applicant: resource
|
13
13
|
|
14
14
|
- unless resource.approved?
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
.card-body= render 'effective/applicants/summary', applicant: resource
|
15
|
+
= card do
|
16
|
+
%p
|
17
|
+
Your application must still be approved.
|
18
|
+
We will send
|
19
|
+
%strong= resource.user.email
|
20
|
+
an email notifying you of the application's approval status.
|
21
|
+
|
22
|
+
= card do
|
23
|
+
= render 'effective/applicants/summary', applicant: resource
|
25
24
|
|
26
25
|
- if resource.min_applicant_references.to_i > 0 || resource.applicant_references.present?
|
27
26
|
= card do
|
@@ -0,0 +1,13 @@
|
|
1
|
+
= render 'layout' do
|
2
|
+
= render 'effective/applicants/content', resource: resource
|
3
|
+
|
4
|
+
= card do
|
5
|
+
.mb-2= render('transcripts_requirements', applicant: resource)
|
6
|
+
|
7
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
8
|
+
= f.hidden_field :id
|
9
|
+
|
10
|
+
= f.check_box :declare_will_send_transcripts,
|
11
|
+
label: "Yes, I will request my transcripts be sent directly from the insitiution to the registrar.", required: true
|
12
|
+
|
13
|
+
= f.save 'Save and Continue'
|
@@ -1,16 +1,9 @@
|
|
1
|
-
|
2
|
-
.
|
3
|
-
|
4
|
-
|
5
|
-
%
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
%tbody
|
11
|
-
%tr
|
12
|
-
%td= icon('check')
|
13
|
-
%td Yes, I hereby certify that I have read and will adhere to the Code of Ethics
|
14
|
-
%tr
|
15
|
-
%td= icon('check')
|
16
|
-
%td Yes, I hereby certify that the statements and information contained herein are correct
|
1
|
+
= wizard_card(fee_payment) do
|
2
|
+
%table.table.table-sm
|
3
|
+
%tbody
|
4
|
+
%tr
|
5
|
+
%td= icon('check')
|
6
|
+
%td Yes, I hereby certify that I have read and will adhere to the Code of Ethics
|
7
|
+
%tr
|
8
|
+
%td= icon('check')
|
9
|
+
%td Yes, I hereby certify that the statements and information contained herein are correct
|
@@ -1,9 +1,2 @@
|
|
1
|
-
|
2
|
-
.
|
3
|
-
.row
|
4
|
-
.col-sm
|
5
|
-
%h5.card-title= fee_payment.wizard_step_title(:demographics)
|
6
|
-
.col-sm-auto.text-right
|
7
|
-
= link_to('Edit', wizard_path(:demographics)) if edit_effective_wizard?
|
8
|
-
|
9
|
-
= render 'users/demographics', parent: fee_payment, user: fee_payment.user
|
1
|
+
= wizard_card(fee_payment)
|
2
|
+
= render 'users/demographics', parent: fee_payment, user: fee_payment.user
|
@@ -1,3 +1,4 @@
|
|
1
1
|
.effective-fee-payment
|
2
2
|
- fee_payment.render_steps.each do |partial|
|
3
|
-
|
3
|
+
- fee_payment.render_step = partial
|
4
|
+
= render "effective/fee_payments/#{partial}", fee_payment: fee_payment
|
@@ -1,9 +1,2 @@
|
|
1
|
-
|
2
|
-
.
|
3
|
-
.row
|
4
|
-
.col-sm
|
5
|
-
%h5.card-title= fee_payment.wizard_step_title(:organization)
|
6
|
-
.col-sm-auto.text-right
|
7
|
-
= link_to('Edit', wizard_path(:organization)) if edit_effective_wizard?
|
8
|
-
|
9
|
-
= render 'organizations/demographics', parent: fee_payment, organization: fee_payment.organization
|
1
|
+
= wizard_card(fee_payment)
|
2
|
+
= render 'organizations/demographics', parent: fee_payment, organization: fee_payment.organization
|
@@ -3,12 +3,11 @@
|
|
3
3
|
|
4
4
|
- raise('expected owner to respond to billing_address') unless resource.owner.respond_to?(:billing_address)
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
=
|
9
|
-
= f.hidden_field :id
|
6
|
+
= card do
|
7
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
8
|
+
= f.hidden_field :id
|
10
9
|
|
11
|
-
|
12
|
-
|
10
|
+
= f.fields_for(f.object.owner_symbol, f.object.owner) do |fo|
|
11
|
+
= effective_address_fields(fo, :billing)
|
13
12
|
|
14
|
-
|
13
|
+
= f.save 'Save and Continue'
|
@@ -1,6 +1,5 @@
|
|
1
1
|
= render 'layout' do
|
2
2
|
= render 'effective/fee_payments/content', resource: resource
|
3
3
|
|
4
|
-
|
5
|
-
.
|
6
|
-
= render_checkout_step2(resource.submit_order, purchased_url: wizard_path(:submitted), deferred_url: wizard_path(:checkout), declined_url: wizard_path(:checkout))
|
4
|
+
= card do
|
5
|
+
= render_checkout_step2(resource.submit_order, purchased_url: wizard_path(:submitted), deferred_url: wizard_path(:checkout), declined_url: wizard_path(:checkout))
|
@@ -6,15 +6,14 @@
|
|
6
6
|
- resource.declare_code_of_ethics = completed
|
7
7
|
- resource.declare_truth = completed
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
=
|
12
|
-
= f.hidden_field :id
|
9
|
+
= card do
|
10
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
11
|
+
= f.hidden_field :id
|
13
12
|
|
14
|
-
|
15
|
-
|
13
|
+
= f.check_box :declare_code_of_ethics,
|
14
|
+
label: 'Yes, I hereby certify that I have read and will adhere to the Code of Ethics'
|
16
15
|
|
17
|
-
|
18
|
-
|
16
|
+
= f.check_box :declare_truth,
|
17
|
+
label: 'Yes, I hereby certify that the statements and information contained herein are correct'
|
19
18
|
|
20
|
-
|
19
|
+
= f.save 'Save and Continue'
|
@@ -1,12 +1,11 @@
|
|
1
1
|
= render 'layout' do
|
2
2
|
= render 'effective/fee_payments/content', resource: resource
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
=
|
7
|
-
= f.hidden_field :id
|
4
|
+
= card do
|
5
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
6
|
+
= f.hidden_field :id
|
8
7
|
|
9
|
-
|
10
|
-
|
8
|
+
= f.fields_for(:user, f.object.user) do |fu|
|
9
|
+
= render 'users/fields_demographics', f: fu, user: f.object.user, parent: resource
|
11
10
|
|
12
|
-
|
11
|
+
= f.save 'Save and Continue'
|
@@ -1,18 +1,17 @@
|
|
1
1
|
= render 'layout' do
|
2
2
|
= render 'effective/fee_payments/content', resource: resource
|
3
3
|
|
4
|
-
|
5
|
-
.
|
6
|
-
- datatable = EffectiveResources.best('EffectiveRepresentativesDatatable').new(self, organization: resource.organization)
|
4
|
+
= card do
|
5
|
+
- datatable = EffectiveResources.best('EffectiveRepresentativesDatatable').new(self, organization: resource.organization)
|
7
6
|
|
8
|
-
|
9
|
-
|
7
|
+
%h2 Representatives
|
8
|
+
= render_datatable(datatable, inline: true, simple: true)
|
10
9
|
|
11
|
-
|
12
|
-
|
13
|
-
|
10
|
+
%h2 Organization Info
|
11
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
12
|
+
= f.hidden_field :id
|
14
13
|
|
15
|
-
|
16
|
-
|
14
|
+
= f.fields_for(:organization, f.object.organization) do |fo|
|
15
|
+
= render 'organizations/fields_demographics', f: fo, organization: f.object.organization, parent: resource
|
17
16
|
|
18
|
-
|
17
|
+
= f.save 'Save and Continue'
|
@@ -1,37 +1,36 @@
|
|
1
1
|
= render 'layout' do
|
2
2
|
= render 'effective/fee_payments/content', resource: resource
|
3
3
|
|
4
|
-
|
5
|
-
.
|
6
|
-
- outstanding_owners = current_user.memberships_owners.select { |owner| owner.outstanding_fee_payment_fees.present? }
|
4
|
+
= card do
|
5
|
+
- outstanding_owners = current_user.memberships_owners.select { |owner| owner.outstanding_fee_payment_fees.present? }
|
7
6
|
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
- if outstanding_owners.blank?
|
8
|
+
%p You have no fees due at this time.
|
9
|
+
= link_to 'Home', root_path, class: 'btn btn-primary'
|
11
10
|
|
12
|
-
|
13
|
-
|
11
|
+
- else
|
12
|
+
%p You have the following fees due at this time:
|
14
13
|
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
- outstanding_owners.each do |owner|
|
15
|
+
%h3= owner
|
16
|
+
= render_purchasables(owner.outstanding_fee_payment_fees)
|
18
17
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
= effective_form_with(model: resource, url: wizard_path(step), method: :put) do |f|
|
19
|
+
= f.hidden_field :id
|
20
|
+
= f.hidden_field :user_type
|
21
|
+
= f.hidden_field :user_id
|
23
22
|
|
24
|
-
|
25
|
-
|
23
|
+
- if outstanding_owners.length == 1
|
24
|
+
- resource.organization = outstanding_owners.first if outstanding_owners.first.kind_of?(EffectiveMemberships.Organization)
|
26
25
|
|
27
|
-
|
26
|
+
%p Continue with fee payment for #{resource.owner}.
|
28
27
|
|
29
|
-
|
28
|
+
= f.hidden_field :organization_id
|
30
29
|
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
- if outstanding_owners.length > 1
|
31
|
+
%p You have multiple memberships that require a fee payment. They must be purchased separately.
|
32
|
+
%p Please select an individual or organization to continue:
|
34
33
|
|
35
|
-
|
34
|
+
= f.select :organization_id, effective_memberships_select_fee_payment_organization(resource)
|
36
35
|
|
37
|
-
|
36
|
+
= f.save 'Save and Continue'
|
@@ -9,8 +9,8 @@
|
|
9
9
|
|
10
10
|
= link_to "Return to Dashboard", root_path, class: 'btn btn-lg btn-primary mb-4'
|
11
11
|
|
12
|
-
|
13
|
-
|
12
|
+
= card do
|
13
|
+
= render 'effective/fee_payments/summary', fee_payment: resource
|
14
14
|
|
15
15
|
.mb-4
|
16
16
|
= collapse('Show fee payment...', card_class: 'my-2') do
|
@@ -25,6 +25,7 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
|
|
25
25
|
t.integer :min_applicant_experiences_months
|
26
26
|
t.integer :min_applicant_references
|
27
27
|
t.integer :min_applicant_endorsements
|
28
|
+
t.integer :min_applicant_equivalences
|
28
29
|
t.integer :min_applicant_courses
|
29
30
|
t.integer :min_applicant_files
|
30
31
|
|
@@ -208,6 +209,11 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
|
|
208
209
|
t.integer :applicant_experiences_months
|
209
210
|
t.text :applicant_experiences_details
|
210
211
|
|
212
|
+
# Transcripts
|
213
|
+
t.date :transcripts_received_on
|
214
|
+
t.string :transcripts_status
|
215
|
+
t.text :transcripts_details
|
216
|
+
|
211
217
|
# Additional Information
|
212
218
|
t.text :additional_information
|
213
219
|
|
@@ -325,6 +331,24 @@ class CreateEffectiveMemberships < ActiveRecord::Migration[6.0]
|
|
325
331
|
add_index :applicant_endorsements, :applicant_id
|
326
332
|
add_index :applicant_endorsements, :token
|
327
333
|
|
334
|
+
# Applicant Equivalences
|
335
|
+
create_table :applicant_equivalences do |t|
|
336
|
+
t.integer :applicant_id
|
337
|
+
t.string :applicant_type
|
338
|
+
|
339
|
+
t.string :name
|
340
|
+
|
341
|
+
t.date :start_on
|
342
|
+
t.date :end_on
|
343
|
+
|
344
|
+
t.text :notes
|
345
|
+
|
346
|
+
t.datetime :created_at
|
347
|
+
t.datetime :updated_at
|
348
|
+
end
|
349
|
+
|
350
|
+
add_index :applicant_equivalences, :applicant_id
|
351
|
+
|
328
352
|
# Applicant Courses
|
329
353
|
create_table :applicant_course_areas do |t|
|
330
354
|
t.string :title
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_memberships
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -290,6 +290,7 @@ files:
|
|
290
290
|
- app/datatables/effective_applicant_courses_datatable.rb
|
291
291
|
- app/datatables/effective_applicant_educations_datatable.rb
|
292
292
|
- app/datatables/effective_applicant_endorsements_datatable.rb
|
293
|
+
- app/datatables/effective_applicant_equivalences_datatable.rb
|
293
294
|
- app/datatables/effective_applicant_experiences_datatable.rb
|
294
295
|
- app/datatables/effective_applicant_references_datatable.rb
|
295
296
|
- app/datatables/effective_applicants_datatable.rb
|
@@ -314,6 +315,7 @@ files:
|
|
314
315
|
- app/models/effective/applicant_course_name.rb
|
315
316
|
- app/models/effective/applicant_education.rb
|
316
317
|
- app/models/effective/applicant_endorsement.rb
|
318
|
+
- app/models/effective/applicant_equivalence.rb
|
317
319
|
- app/models/effective/applicant_experience.rb
|
318
320
|
- app/models/effective/applicant_reference.rb
|
319
321
|
- app/models/effective/applicant_review.rb
|
@@ -340,6 +342,7 @@ files:
|
|
340
342
|
- app/views/admin/applicants/_form_decline.html.haml
|
341
343
|
- app/views/admin/applicants/_form_missing_info.html.haml
|
342
344
|
- app/views/admin/applicants/_form_process.html.haml
|
345
|
+
- app/views/admin/applicants/_form_transcripts.html.haml
|
343
346
|
- app/views/admin/applicants/_status.html.haml
|
344
347
|
- app/views/admin/categories/_form.html.haml
|
345
348
|
- app/views/admin/categories/_form_applicant.html.haml
|
@@ -393,6 +396,7 @@ files:
|
|
393
396
|
- app/views/effective/applicants/_demographics.html.haml
|
394
397
|
- app/views/effective/applicants/_education.html.haml
|
395
398
|
- app/views/effective/applicants/_endorsements.html.haml
|
399
|
+
- app/views/effective/applicants/_equivalences.html.haml
|
396
400
|
- app/views/effective/applicants/_experience.html.haml
|
397
401
|
- app/views/effective/applicants/_files.html.haml
|
398
402
|
- app/views/effective/applicants/_layout.html.haml
|
@@ -404,6 +408,8 @@ files:
|
|
404
408
|
- app/views/effective/applicants/_select_organization.html.haml
|
405
409
|
- app/views/effective/applicants/_stamp.html.haml
|
406
410
|
- app/views/effective/applicants/_summary.html.haml
|
411
|
+
- app/views/effective/applicants/_transcripts.html.haml
|
412
|
+
- app/views/effective/applicants/_transcripts_requirements.html.haml
|
407
413
|
- app/views/effective/applicants/billing.html.haml
|
408
414
|
- app/views/effective/applicants/checkout.html.haml
|
409
415
|
- app/views/effective/applicants/course_amounts.html.haml
|
@@ -411,6 +417,7 @@ files:
|
|
411
417
|
- app/views/effective/applicants/demographics.html.haml
|
412
418
|
- app/views/effective/applicants/education.html.haml
|
413
419
|
- app/views/effective/applicants/endorsements.html.haml
|
420
|
+
- app/views/effective/applicants/equivalences.html.haml
|
414
421
|
- app/views/effective/applicants/experience.html.haml
|
415
422
|
- app/views/effective/applicants/files.html.haml
|
416
423
|
- app/views/effective/applicants/organization.html.haml
|
@@ -420,6 +427,7 @@ files:
|
|
420
427
|
- app/views/effective/applicants/start.html.haml
|
421
428
|
- app/views/effective/applicants/submitted.html.haml
|
422
429
|
- app/views/effective/applicants/summary.html.haml
|
430
|
+
- app/views/effective/applicants/transcripts.html.haml
|
423
431
|
- app/views/effective/fee_payments/_content.html.haml
|
424
432
|
- app/views/effective/fee_payments/_dashboard.html.haml
|
425
433
|
- app/views/effective/fee_payments/_declarations.html.haml
|