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