effective_memberships 0.6.0 → 0.6.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a428993d4ea724f2546ead08c6ab020c53617c6fe114485d1e89e9b3b5d4c409
|
|
4
|
+
data.tar.gz: 77b8313894bb1268432300a90eae98841914f3b17089e4cac16247912f1fed0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7978b946748cdd65f80838021267f79753496dc008d576055d7cd7f2a1fce2dd27da68215751780fb6c48e5e1617ef12a47e151f7fcc4b5e7a822c561c15b90a
|
|
7
|
+
data.tar.gz: 38a4a28c95f01b5d061d46bba148d3b6c96e7701de0979e1229907e0f518dd1a35689812bb3521e6acdf0432647bd459fc2c065b9678019f206807f6a6e3b836
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
= f.has_many(:applicant_educations, cards: true) do |aef|
|
|
12
12
|
%h4.mb-4 Post-Secondary Education
|
|
13
13
|
|
|
14
|
-
= aef.text_field :degree_obtained, label: 'Degree, diploma or program'
|
|
14
|
+
= aef.text_field :degree_obtained, label: 'Degree, diploma, or program'
|
|
15
15
|
|
|
16
16
|
.row
|
|
17
17
|
.col= aef.text_field :institution
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
.row
|
|
21
21
|
.col= aef.date_field :start_on, label: 'Start Date'
|
|
22
|
-
.col= aef.date_field :end_on, label: '
|
|
22
|
+
.col= aef.date_field :end_on, label: 'Graduation Date'
|
|
23
23
|
|
|
24
24
|
= render_if_exists("effective/applicants/education_fields", f: f)
|
|
25
25
|
|
|
@@ -40,6 +40,15 @@
|
|
|
40
40
|
%th Fax:
|
|
41
41
|
%td= user.fax.presence || '-'
|
|
42
42
|
|
|
43
|
+
- if user.respond_to?(:residential_address)
|
|
44
|
+
%tr
|
|
45
|
+
%th Residential Address:
|
|
46
|
+
%td
|
|
47
|
+
- if user.residential_address.present?
|
|
48
|
+
= user.residential_address.to_html
|
|
49
|
+
- else
|
|
50
|
+
= '-'
|
|
51
|
+
|
|
43
52
|
- if user.respond_to?(:billing_address)
|
|
44
53
|
%tr
|
|
45
54
|
%th Billing Address:
|