diff --git a/app/assets/stylesheets/specific/artists.css.scss b/app/assets/stylesheets/specific/artists.css.scss index 8dabc4ea9..7364f32b7 100644 --- a/app/assets/stylesheets/specific/artists.css.scss +++ b/app/assets/stylesheets/specific/artists.css.scss @@ -34,4 +34,8 @@ div#c-artists { margin: 0; } } + + span.hint { + display: block; + } } diff --git a/app/views/artists/_form.html.erb b/app/views/artists/_form.html.erb index f654a87c9..e43cb484b 100644 --- a/app/views/artists/_form.html.erb +++ b/app/views/artists/_form.html.erb @@ -5,6 +5,7 @@ <%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5"} %> <%= f.input :is_active %> <%= f.input :is_banned %> + <%= dtext_field "artist", "notes" %> <%= f.button :submit, "Submit" %> <%= dtext_preview_button "artist", "notes" %> diff --git a/app/views/uploads/show.html.erb b/app/views/uploads/show.html.erb index 9ffcd325f..33bd00812 100644 --- a/app/views/uploads/show.html.erb +++ b/app/views/uploads/show.html.erb @@ -28,3 +28,9 @@ <% content_for(:page_title) do %> Upload - <%= Danbooru.config.app_name %> <% end %> + +<% if @upload.is_pending? || @upload.is_processing? %> + <% content_for(:html_header) do %> + + <% end %> +<% end %>