effective_cpd 0.3.0 → 0.3.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 +4 -4
- data/app/views/effective/cpd_audits/complete.html.haml +16 -15
- data/lib/effective_cpd/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86cc744bca079efc7c8980e61f35d8200c4b01efbc309481ad50bf9ffa8d885c
|
|
4
|
+
data.tar.gz: bd79c194bc5b49fa01777fd43e7cd6a9efd029b17ca70793ce54059a26656ac1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b014a09d8642a8e61c82887ffd511883203b2c5bc06db5eaefd60765c17b2275b944e1d591dce8d0db2197c568f7f9ee4f276bcc7f175c99a0ced075542b07d7
|
|
7
|
+
data.tar.gz: bfd0c5a9a54df1b62de4c9345da508a9126ca2271480677bb8304b32b5d79085eca22a0c0502d8d56e496b7c88b845c00b59f287a378a2940c1208a1cc6cdc05
|
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
= render('layout') do
|
|
2
|
-
- raise('expected a submitted cpd_audit') unless resource.was_submitted?
|
|
2
|
+
- raise('expected a submitted cpd_audit') unless resource.was_submitted? || resource.closed?
|
|
3
3
|
|
|
4
|
-
.
|
|
5
|
-
.
|
|
6
|
-
.
|
|
7
|
-
|
|
8
|
-
.
|
|
4
|
+
- if resource.was_submitted?
|
|
5
|
+
.text-center
|
|
6
|
+
.row
|
|
7
|
+
.col-2
|
|
8
|
+
.col-8
|
|
9
|
+
.alert.alert-success Audit Submitted!
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
%p
|
|
12
|
+
The following audit was successfully submitted at
|
|
13
|
+
= succeed('.') do
|
|
14
|
+
= resource.submitted_at.strftime('%F')
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
- unless resource.determination.present?
|
|
17
|
+
Your audit must be reviewed and a final determination made.
|
|
18
|
+
We will send
|
|
19
|
+
%strong= resource.user.email
|
|
20
|
+
an email notifying you of the determination.
|
|
20
21
|
|
|
21
22
|
.mb-4= render(resource)
|
|
22
23
|
|