-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Grievance Report Page
- Loading branch information
Showing
9 changed files
with
67 additions
and
14 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
angular.module('GrievanceFormCtrl', []).controller('GrievanceFormCtrl', ['$scope', function($scope) { | ||
$scope.pageHeader = 'RPI Ambulance Grievance Report Form'; | ||
$scope.sections = [ | ||
{ | ||
header: 'Grievance Committee', | ||
internal_title: 'Grievance Committee', | ||
body: 'The Grievance Committee at RPIA aims to address interpersonal conflicts that may occur within the club, defuse intra-agency tensions, and ensure that the SOGs and constitution are followed by all members. We stand as unbiased members of the club and hope that you’ll feel comfortable sharing any issues or concerns with us. We will work to the best of our abilities so that RPI Ambulance can be a great experience for all members. In many cases, a problem can be easily resolved by talking with each other. However, if you do not feel comfortable addressing the person(s) directly, please place your response through our Google Form below so that we can help mediate a session with the other individual(s). There are many options in terms of level of anonymity, but all meetings and interactions related to your case will be held in a closed environment. Do not hesitate to contact us at [email protected] for more information.\n' | ||
}, | ||
|
||
{ | ||
header: 'Report Form', | ||
body: '<div class="embed-responsive embed-responsive-16by9"> ' + | ||
'<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfP8JH9vpKtFNeaz0gxF7IbcgVNj-zw8AxyZMjg0-QioX0QKA/viewform?embedded=true" width="640" height="2031" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>' | ||
} | ||
]; | ||
}]); |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<section id="grievance-form"> | ||
<div class="container"> | ||
<div class="center"> | ||
<page-content ng-hide="editMode"></page-content> | ||
<edit-content ng-show="editMode"></edit-content> | ||
</div> | ||
</div> | ||
</section> |