Mercurial > zeropaste
annotate app/views/pastes/show.html.erb @ 388:797e351b2e2b
Remove alerts and title from show.
Already shown by layout.
author | nanaya <me@myconan.net> |
---|---|
date | Sun, 07 Jun 2015 10:33:17 +0900 |
parents | 92c62966191b |
children | 91dabc034389 |
rev | line source |
---|---|
98 | 1 <% provide :title, "Paste ##{@paste.id}" %> |
190 | 2 |
261 | 3 <div id="paste-show" data-id="<%= @paste.id %>"> |
264 | 4 <ul id="paste-mode" class="nav nav-tabs"> |
288 | 5 <li class="active"><%= link_to 'Plain', '#pl', :data => { :toggle => 'pill' } %></li> |
264 | 6 <li><%= link_to 'Highlight', '#hl', :data => { :toggle => 'pill' } %></li> |
7 <li><%= link_to 'Markdown', '#md', :data => { :toggle => 'pill' } %></li> | |
8 </ul> | |
9 | |
10 <div id="paste" class="tab-content"> | |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
11 <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
|
12 <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
|
13 </div> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
14 <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
|
15 <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
|
16 </div> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
17 <div class="tab-pane" id="md"> |
105 | 18 <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
|
19 </div> |
264 | 20 </div> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
21 </div> |
2 | 22 |
325
45bf99bfd48b
Remove authenticity token from form.
edogawaconan <me@myconan.net>
parents:
307
diff
changeset
|
23 <%= form_for @paste, :method => :delete, :authenticity_token => false do |f| %> |
265
6cca1ab53337
Infinitely better error messages and notice.
edogawaconan <me@myconan.net>
parents:
264
diff
changeset
|
24 |
264 | 25 <div class="row"><div class="col-md-4"> |
261 | 26 <div class="input-group"> |
265
6cca1ab53337
Infinitely better error messages and notice.
edogawaconan <me@myconan.net>
parents:
264
diff
changeset
|
27 <%= f.text_field :key, :value => nil, :placeholder => 'Deletion key', :class => "form-control", :autofocus => f.object.errors.any? %> |
261 | 28 <span class="input-group-btn"> |
307 | 29 <%= f.button 'Delete this paste', :class => 'btn btn-danger' %> |
261 | 30 </span> |
31 </div> | |
264 | 32 </div></div> |
33 <% end %> | |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
34 |
264 | 35 <ul class="nav nav-pills"> |
36 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> | |
37 <li><%= link_to 'Derive', root_path(:base => @paste) %></li> | |
38 <li><%= link_to 'More Paste', root_path %></li> | |
39 </ul> |