Skip to content
This repository has been archived by the owner on Aug 21, 2018. It is now read-only.

Commit

Permalink
[#840]:CLean Conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr0chin committed Jun 2, 2017
2 parents ec0d6a9 + acce8e6 commit 6bf8c55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions app/MyApp/app/Router.js
Original file line number Diff line number Diff line change
Expand Up @@ -6754,6 +6754,7 @@ $(function() {
App.$el.children('.body').html('<div id="ManageCourseCareer"></div>');
$('#ManageCourseCareer').append('<div><h2>'+App.languageDict.attributes.Add_Multiple_Courses+'</h2></div>')
$('#ManageCourseCareer').append(addCourseCareer.el);
$('#LCourse').multiselect({columns: 1,placeholder: 'Select Course'});
var directionOfLang = App.languageDict.get('directionOfLang');
applyCorrectStylingSheet(directionOfLang)

Expand Down
13 changes: 6 additions & 7 deletions app/MyApp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1462,23 +1462,22 @@ <h4 id="new-quiz"><%= languageDict.attributes.New_Career_Path %></h4>
<div class ="multipleCourse">
<form>
<label for="lName"><%= languageDict.attributes.Level_Name %></label>
<select id="level" style="font-size: 15px;font-weight: 500;">
<option><%= languageDict.attributes.Select_An_option %></option>
<select id="levelSelect" style="padding: 2px; margin-top: 8px;">
<option selected><%= languageDict.attributes.Select_An_option %></option>
<option value='Begineers'>Begineers</option>
<option value='Intermediate'>Intermediate</option>
<option value='Professional'>Professional</option>
</select>
<label for="cpName"><%= languageDict.attributes.Course_Career_Path_Name %></label>
<input type="text" id="careerPath" placeholder="Course Career Path Name" style = "padding-top: 12px; padding-bottom: 11px;">
<input type="text" id="careerPath" placeholder="Course Career Path Name" style="padding: 2px; margin-top: 8px;">
<label for="LCourse"><%= languageDict.attributes.List_of_Courses %></label>
<select id="LCourse" style="font-size: 15px;font-weight: 500;">
<option><%= languageDict.attributes.Select_An_option %></option>
<select id="LCourse" name = "LCourse[]">
<%for(var i =0; i<Course_Length;i++){%>
<option value='<%=Courselist[i]%>'><%=Courselist[i]%></option>
<%}%>
</select>
<button id="AddCareerPath" class="course btn btn-success" style="margin-left: 23px; margin-top: -15px;"><%= languageDict.attributes.Create_Course_Career %></button>
<button id ="CancelCOursePath" class="btn resignBtn btn-danger" style="margin-left: 23px;margin-top: -15px;" ><%= languageDict.attributes.Cancel %></button>
<button id="AddCareerPath" class="course btn btn-success" style="margin-left: 23px; margin-top: -1px;"><%= languageDict.attributes.Create_Course_Career %></button>
<button id ="CancelCOursePath" class="btn resignBtn btn-danger" style="margin-left: 23px;margin-top: -1px;" ><%= languageDict.attributes.Cancel %></button>
</form>
</div>
<div>
Expand Down

0 comments on commit 6bf8c55

Please sign in to comment.