Skip to content

Commit

Permalink
Vivian branch seminar (#49) (#60)
Browse files Browse the repository at this point in the history
* Parses input for create event page

* Create event will add to the datebase

* not broken

* Transfer div kind of works

* transfer model should add organizers to db

* fixes for transfer model

* create page event works

* create seminar page can pull event names from database

* trying fetch stuff

* please take the fetch attempt things

* calendar changes that apparently did not get pushed

* create seminar page displays events and it is selectable

* create seminar page connects to the database

* fixes for createSeminar dropdown for events reflect selection and seminar created succesfully

* transfer data div is fixed now it displays last name and it does not display yourself as a selectable user

* create event fixed, pushes two of the current user before

* Transfer data component is fixed, you as the user won't appear on the available organizer list. Event duration is ordered in terms of start date and time then end date and time.

* Transfer data component is fixed, you as the user won't appear on the available organizer list. Event duration is ordered in terms of start date and time then end date and time.

* Create event page now works like the seminar page with the date picker, time picker and transfer component fixed.
  • Loading branch information
Tamara Charchoghlyan authored Nov 7, 2018
1 parent 8a2de6a commit e055c53
Show file tree
Hide file tree
Showing 7 changed files with 819 additions and 402 deletions.
Binary file added frontend/src/assets/images/doggo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions frontend/src/components/addSeminar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<el-card @click.native="createEvent" class="box-card" style="margin:10px; text-align:center;" shadow="hover" >
<el-card @click.native="createSeminar" class="box-card" style="margin:10px; text-align:center;" shadow="hover" >
<div >
Add New Seminar
</div>
Expand All @@ -16,8 +16,8 @@ export default {
}
},
methods: {
createEvent() {
this.$router.push('not-found')
createSeminar() {
this.$router.push('CreateSeminar')
},
},
}
Expand Down
Loading

0 comments on commit e055c53

Please sign in to comment.