Skip to content

Commit

Permalink
Issue #206 fixed indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
serag committed Apr 22, 2014
1 parent 2bc159e commit 56ce865
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions tutor/app/views/lecturers/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>CoolSoft - Java Tutor</title>
</head>
<body>
<h1> lecturers Index </h1>
</body>
Expand Down
1 change: 1 addition & 0 deletions tutor/app/views/lecturers/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>CoolSoft - Java tutor | <%= @lecturer.id%>'s Profile</title>
</head>
<body>
<h1> <%= image_tag(@lecturer.profile_image_url.to_s) if @lecturer.profile_image? %> <%= @lecturer.name%>'s Profile </h1>
<div class="tabs">
Expand Down
1 change: 1 addition & 0 deletions tutor/app/views/students/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>CoolSoft - Java Tutor</title>
</head>
<body>
<h1> students Index </h1>
</body>
Expand Down
1 change: 1 addition & 0 deletions tutor/app/views/students/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>CoolSoft - Java tutor | <%= @student.id%>'s Profile</title>
</head>
<body>
<h1> <%= image_tag(@student.profile_image_url.to_s) if @student.profile_image? %> <%= @student.name%>'s Profile </h1>
<div class="tabs">
Expand Down
1 change: 1 addition & 0 deletions tutor/app/views/teaching_assistants/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>CoolSoft - Java Tutor</title>
</head>
<body>
<h1> Teaching Assistants Index </h1>
</body>
Expand Down
1 change: 1 addition & 0 deletions tutor/app/views/teaching_assistants/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<title>CoolSoft - Java tutor | <%= @teaching_assistant.id%>'s Profile</title>
</head>
<body>
<h1> <%= image_tag(@teaching_assistant.profile_image_url.to_s) if @teaching_assistant.profile_image? %> <%= @teaching_assistant.name%>'s Profile </h1>
<div class="tabs">
Expand Down

0 comments on commit 56ce865

Please sign in to comment.