UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit d1a139e2 authored by jtwidt's avatar jtwidt
Browse files

formatting fixes

parent b3324176
No related branches found
No related tags found
No related merge requests found
......@@ -3,13 +3,14 @@
<PageHeader title="3 DAY WORKSHOP" />
<div class="col-lg-12 px-4">
<div class="px-4 pb-4">
<h2 class="mx-0">YOU CAN REGISTER FOR THE FOLLOWING SESSIONS</h2>
<p class="pr-5">
<h2 class="mx-0 pa-0">
YOU CAN REGISTER FOR THE FOLLOWING SESSIONS
</h2>
<p class="pa-0">
Complete the registration process below in order to reserve your seat
</p>
</div>
<!-- Replace the below the registration component -->
<h4 class="mt-6">Courses:</h4>
<v-container class="mb-6">
<v-row>
<v-col
......@@ -24,16 +25,16 @@
<v-card class="mt-6" outlined width="400">
<v-list-item-content>
<v-list-item-title class="headline mb-1">{{
course["course name"]
course['course name']
}}</v-list-item-title>
<v-list-item-subtitle class="pb-1">
{{ course["start readable"] }} -
{{ course["end readable"] }}
{{ course['start readable'] }} -
{{ course['end readable'] }}
</v-list-item-subtitle>
</v-list-item-content>
<v-card-text class="px-6">
<div class="text--primary px-0 py-2 text-left">
{{ course["course description"] }}
{{ course['course description'] }}
</div>
<div>
<v-progress-linear
......@@ -48,9 +49,9 @@
<div class="d-flex pt-2 justify-space-between">
<div>
Seats remaining:
{{ course["max seats"] - course["reserved seats"] }}
{{ course['max seats'] - course['reserved seats'] }}
</div>
<div>Total Seats: {{ course["max seats"] }}</div>
<div>Total Seats: {{ course['max seats'] }}</div>
</div>
</v-card-text>
<v-card-actions class="flex justify-content-center mb-2">
......@@ -92,7 +93,7 @@
<div class="px-4 pt-4">
<h2 class="mx-0">3 DAY WORKSHOP AGENDA</h2>
</div>
<div class="container">
<div class="container pb-10">
<div class="row text-left justify-content-center">
<div class="col-xs-10 col sm-8 col-md-10 col-lg-8 col-xl-6">
<div class="px-4 pt-4">
......@@ -114,11 +115,11 @@
</div>
</template>
<script>
import PageHeader from "@/components/PageHeader";
import CoursesService from "@/api/courses";
import PageHeader from '@/components/PageHeader';
import CoursesService from '@/api/courses';
export default {
name: "3DayWorkshop",
name: '3DayWorkshop',
components: { PageHeader },
data: function() {
return {
......@@ -126,74 +127,75 @@ export default {
{
id: 1,
text:
"Deploy a Java API with a canary endpoint and verify it in Platform One."
'Deploy a Java API with a canary endpoint and verify it in Platform One.',
},
{
id: 2,
text:
"Review gitlab.yml and associate stages with IAAC for deploying on Party Bus"
'Review gitlab.yml and associate stages with IAAC for deploying on Party Bus',
},
{
id: 3,
text: "Review docker file and add dependencies from Iron Bank"
text: 'Review docker file and add dependencies from Iron Bank',
},
{
id: 4,
text: "Review the build.gradle and update dependencies/tasks"
text: 'Review the build.gradle and update dependencies/tasks',
},
{
id: 5,
text: "Pair Programming and P1"
text: 'Pair Programming and P1',
},
{
id: 6,
text:
"Add a test to verify the newly created endpoint and deploy to P1 dev"
'Add a test to verify the newly created endpoint and deploy to P1 dev',
},
{
id: 7,
text:
"Write a test for a new feature based on a story, fulfill the test, and deploy to P1"
}
'Write a test for a new feature based on a story, fulfill the test, and deploy to P1',
},
],
day2: [
{
id: 1,
text: "Leveraging P1 and built-in quality to continuously release"
text: 'Leveraging P1 and built-in quality to continuously release',
},
{
id: 2,
text: "Writing user stories to leverage P1 continuous release ability"
text:
'Writing user stories to leverage P1 continuous release ability',
},
{
id: 3,
text:
"Write a test for a new feature with underlying permutations and fulfill pipeline requirements"
'Write a test for a new feature with underlying permutations and fulfill pipeline requirements',
},
{
id: 4,
text: "Paired code reviews as a P1 alternative to Pair Programming"
}
text: 'Paired code reviews as a P1 alternative to Pair Programming',
},
],
day3: [
{
id: 1,
text: "Understanding how P1 prioritizes the customer"
text: 'Understanding how P1 prioritizes the customer',
},
{
id: 2,
text: "P1 recommended ceremonies"
text: 'P1 recommended ceremonies',
},
{
id: 3,
text: "Run a micro iteration on your P1 application"
text: 'Run a micro iteration on your P1 application',
},
{
id: 4,
text: "Retrospective"
}
text: 'Retrospective',
},
],
courses: []
courses: [],
};
},
async mounted() {
......@@ -201,7 +203,7 @@ export default {
try {
this.courses = await CoursesService.getCourses({ gbsd: false });
} catch (e) {
console.error("error getting courses", e);
console.error('error getting courses', e);
} finally {
this.loadingCourses = false;
}
......@@ -210,23 +212,23 @@ export default {
getUrl(course) {
return encodeURI(
`https://docs.google.com/forms/d/e/1FAIpQLScdVm3uZo_8PAt2aGivbj621DU02RROGGr8DsVb0QgRNLiDLw/viewform?entry.1531415298=${course[
"start date"
'start date'
] +
"+-+" +
course["course name"].replace(/ /g, "+")}`
'+-+' +
course['course name'].replace(/ /g, '+')}`
);
},
is3DayWorkshop(courseName) {
return courseName.match(/3-day Workshop/i);
}
},
},
computed: {
filteredCourses() {
return this.courses.filter(course =>
this.is3DayWorkshop(course["course name"])
return this.courses.filter((course) =>
this.is3DayWorkshop(course['course name'])
);
}
}
},
},
};
</script>
<style lang="scss">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment