Mercurial > zeropaste
annotate app/views/pastes/show.html.erb @ 263:a9c45375a656
Nuke width adjuster from orbit.
| author | edogawaconan <me@myconan.net> |
|---|---|
| date | Wed, 16 Oct 2013 01:55:23 +0900 |
| parents | f057e8c78e50 |
| children | fa4a1ba990ae |
| rev | line source |
|---|---|
| 98 | 1 <% provide :title, "Paste ##{@paste.id}" %> |
| 190 | 2 |
| 3 <% if flash[:error] %> | |
| 4 <div class="alert alert-error"> | |
| 5 <%= flash[:error] %> | |
| 6 </div> | |
| 7 <% end %> | |
| 8 | |
|
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
9 <div class="page-header"> |
| 98 | 10 <h1><%= content_for :title %></h1> |
|
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
11 </div> |
|
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
12 |
| 261 | 13 <div id="paste-show" data-id="<%= @paste.id %>"> |
| 14 <div class="row"><div class="col-lg-12"> | |
| 15 <div class="btn-toolbar"> | |
| 16 <div id="paste-mode" class="btn-group emul-radio" data-toggle="buttons"> | |
| 17 <%= link_to 'Plain', '#pl', :data => { :toggle => 'tab' }, :class => 'btn btn-default active' %> | |
| 18 <%= link_to 'Highlight', '#hl', :data => { :toggle => 'tab' }, :class => 'btn btn-default' %> | |
| 19 <%= link_to 'Markdown', '#md', :data => { :toggle => 'tab' }, :class => 'btn btn-default' %> | |
| 20 </div> | |
|
125
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
21 </div> |
| 261 | 22 </div></div> |
| 23 <div class="row"><div id="paste" class="col-lg-12 tab-content"> | |
|
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
24 <div class="tab-pane active" id="pl"> |
|
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
25 <pre><%= @paste.paste %></pre> |
|
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
26 </div> |
|
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
27 <div class="tab-pane" id="hl"> |
|
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
28 <pre class="prettyprint linenums"></pre> |
|
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
29 </div> |
|
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
30 <div class="tab-pane" id="md"> |
| 105 | 31 <div class="well"></div> |
|
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
32 </div> |
| 261 | 33 </div></div> |
|
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
34 </div> |
| 2 | 35 |
| 261 | 36 <div class="row"><div class="col-md-4"> |
|
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
37 <%= form_for @paste, :method => :delete do |f| %> |
| 261 | 38 <div class="input-group"> |
| 39 <%= f.text_field :key, :value => nil, :placeholder => 'Deletion key', :class => "form-control", :autofocus => !flash[:error].blank? %> | |
| 40 <span class="input-group-btn"> | |
| 41 <%= f.submit 'Delete this paste', :class => 'btn btn-danger' %> | |
| 42 </span> | |
| 43 </div> | |
|
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
44 <% end %> |
| 261 | 45 </div></div> |
|
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
46 |
| 107 | 47 <div> |
| 48 <ul class="nav nav-pills"> | |
| 49 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> | |
| 257 | 50 <li><%= link_to 'New paste based on this', root_path(:base => @paste) %></li> |
| 107 | 51 <li><%= link_to 'More Paste', root_path %></li> |
| 52 </ul> | |
| 53 </div> |
