Created
August 8, 2012 15:10
-
-
Save marc-an-be/3295747 to your computer and use it in GitHub Desktop.
Sinatra jQuery Mobile App Chunk 5
This file contains 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
__END__ | |
@@ layout | |
!!! 5 | |
%html{:lang => 'en'} | |
%head | |
%meta{:charset => 'utf-8'} | |
%meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'} | |
%meta{:name => 'format-detection', :content => 'telephone=no'} | |
%title PillTracker | |
%link{:href => '//code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.css', :rel => 'stylesheet'} | |
%link{:href => '//dev.jtsage.com/cdn/datebox/latest/jquery.mobile.datebox.min.css', :rel => 'stylesheet'} | |
%script{:src => '//code.jquery.com/jquery-1.7.1.min.js'} | |
%script{:src => '//code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js'} | |
%script{:src => '//dev.jtsage.com/cdn/datebox/latest/jquery.mobile.datebox.min.js'} | |
%body | |
%div{'data-role' => 'page'} | |
%div{'data-role' => 'header'} | |
%h2 PillTracker | |
= yield(:layout) | |
@@ index | |
%ul.ui-listview{:data => {:role => 'listview', :theme => 'b'}} | |
%li{:data => {:theme => 'a'}} | |
%a{href:'/new/'} New | |
- @events.each do |event| | |
%li | |
%img{:style => 'float:left;margin:1em;', | |
:src => event.type == 'took' ? 'pills.png' : 'stethoscope.png'} | |
%div&= event.time.strftime("%Y-%m-%d %H:%M") | |
%div&= "#{event.type}: #{event.description}" | |
@@ new | |
%form{:action => '/new/', :method => 'post'} | |
%p | |
%label{:for => 'event'} Event | |
%p | |
%fieldset{:data => {:role => 'controlgroup', :type => 'horizontal'}} | |
%input{:type => 'radio', :name => 'type', :id => 'took', :value => 'took', :checked => 'checked'} | |
%label{:for => 'took'} took | |
%input{:type => 'radio', :name => 'type', :id => 'feel', :value => 'feel'} | |
%label{:for => 'feel'} feel | |
%p | |
%label{:for => 'time'} Time | |
%p | |
%input{:name => 'time', :id => 'time', :type => 'date', 'data-role' => 'datebox', | |
:value => Time.now.strftime('%Y-%m-%d %H:%M:%S'), | |
'data-options' => '{"mode": "slidebox", "dateFormat":"YYYY-MM-DD GG:ii", "timeFormat":24, "fieldsOrderOverride":["y","m","d","h","i"]}'} | |
%p | |
%label{ :for => 'description'} Description | |
%p | |
%textarea{:name => 'description', :id => 'description'} | |
%p | |
%a{:href => '/', :data => {:role => 'button', :data => 'true'}} Cancel | |
%button.ui-btn-hidden{:type => 'submit', 'data-theme'=>'a', 'aria-disabled'=>'false'} Save |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment