This file contains hidden or 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
Very nice intro book : | |
http://kushal.fedorapeople.org/book/ | |
Execute and learn python online :) ... | |
http://www.learnpython.org/ | |
The best intro video on python i could find :) ... | |
http://www.youtube.com/watch?v=Pij6J0HsYFA&list=EC4C4720A6F225E074&index=0 | |
How to learn Python ? ... |
This file contains hidden or 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
class PerformaonesController < InheritedResources::Base | |
def new | |
@performaone = Performaone.new(:employee_id => params[:id], :hospital_id => params[:hospital_id]) | |
end | |
def create | |
@performaone = Performaone.new(params[:performaone]) | |
respond_to do |format| | |
if @performaone.save | |
format.html { redirect_to @performaone, notice: 'Performance Entry for the employee was successfully created.' } |
This file contains hidden or 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
<div class="row"> | |
<div class="span4"> | |
<table class="table table-bordered"> | |
<thead> | |
<tr> | |
<th>Specialization</th> | |
<th>Number of Employees</th> | |
</tr> | |
</thead> | |
<tbody> |
This file contains hidden or 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
<link rel="stylesheet" href="//cdn.oesmith.co.uk/morris-0.4.1.min.css"> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script> | |
<script src="//cdn.oesmith.co.uk/morris-0.4.1.min.js"></script> | |
<h1>Doctors by Specialisations</h1> | |
<br><br> | |