This commit is contained in:
albert
2011-12-29 17:51:09 -05:00
parent e670412731
commit dec55010a6
3 changed files with 11 additions and 0 deletions

View File

@@ -34,4 +34,8 @@ div#c-artists {
margin: 0; margin: 0;
} }
} }
span.hint {
display: block;
}
} }

View File

@@ -5,6 +5,7 @@
<%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5"} %> <%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5"} %>
<%= f.input :is_active %> <%= f.input :is_active %>
<%= f.input :is_banned %> <%= f.input :is_banned %>
<%= dtext_field "artist", "notes" %> <%= dtext_field "artist", "notes" %>
<%= f.button :submit, "Submit" %> <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "artist", "notes" %> <%= dtext_preview_button "artist", "notes" %>

View File

@@ -28,3 +28,9 @@
<% content_for(:page_title) do %> <% content_for(:page_title) do %>
Upload - <%= Danbooru.config.app_name %> Upload - <%= Danbooru.config.app_name %>
<% end %> <% end %>
<% if @upload.is_pending? || @upload.is_processing? %>
<% content_for(:html_header) do %>
<meta http-equiv="refresh" content="1">
<% end %>
<% end %>