Improves text for artist link creation

This commit is contained in:
Parasprite 2020-11-26 13:46:15 -06:00 committed by byte[]
parent 8ba486b9ec
commit 6944cf0054
5 changed files with 14 additions and 17 deletions

View file

@ -7,19 +7,15 @@
.field .field
p p
label for="tag_name" label for="tag_name"
' The tag, ' Artist Link validation is intended for artists. Validating your link will give you control over how your art is shared on the site and will allow you to create a
em> specific a> href="/commissions" commissions
' to you, usually ' listing. Do not request a link if the source has no artwork that you yourself did not create.
code> = text_input f, :tag_name, value: assigns[:tag_name], class: "input", autocomplete: "off", placeholder: "artist:your-name", data: [ac: "true", ac_min_length: "3", ac_source: "/tags/autocomplete?term="]
| artist:
em artist name here
' or a series name
= text_input f, :tag_name, value: assigns[:tag_name], class: "input", autocomplete: "off", placeholder: "artist:name", data: [ac: "true", ac_min_length: "3", ac_source: "/tags/autocomplete?term="]
= error_tag f, :tag = error_tag f, :tag
.field .field
label for="uri" label for="uri"
' URL of your art webpage ' URL of your art webpage (may be your Derpibooru profile page if you have no other sources)
= url_input f, :uri, class: "input input--wide", placeholder: "https://www.deviantart.com/your-name", required: true = url_input f, :uri, class: "input input--wide", placeholder: "https://www.deviantart.com/your-name", required: true
= error_tag f, :uri = error_tag f, :uri

View file

@ -1,9 +1,9 @@
h1 Artist Links h1 Artist Links
p p
a.button href=Routes.profile_artist_link_path(@conn, :new, @user) a.button href=Routes.profile_artist_link_path(@conn, :new, @user)
' Create a link ' Request a link
p p
' Artist links associate your account on Derpibooru with tags about content you create and with accounts on sites elsewhere. This allows users to easily identify artists and admins to act more rapidly on takedown requests. ' Artist links associate your account on Derpibooru with tags about content you create and with accounts on sites elsewhere. This allows users to easily identify artists and staff to act more rapidly on takedown requests.
table.table table.table
thead thead

View file

@ -1,2 +1,2 @@
h1 Create Link h1 Request Artist Link
= render PhilomenaWeb.Profile.ArtistLinkView, "_form.html", changeset: @changeset, action: Routes.profile_artist_link_path(@conn, :create, @user), conn: @conn = render PhilomenaWeb.Profile.ArtistLinkView, "_form.html", changeset: @changeset, action: Routes.profile_artist_link_path(@conn, :create, @user), conn: @conn

View file

@ -32,11 +32,12 @@ h3 Status
- unverified?(@artist_link) -> - unverified?(@artist_link) ->
p p
strong This link is pending verification by a member of the administration team. strong This link is pending verification by a member of the administration team.
p .dnp-warning
h3 To have your link verified as fast as possible, please place this text somewhere on the page you are linking. p
p h3 To have your link verified as fast as possible, please place this text somewhere on the page you are linking.
code p
h1 = @artist_link.verification_code code
h1 = @artist_link.verification_code
p Otherwise, an administrator will have to contact you to verify your identity. p Otherwise, an administrator will have to contact you to verify your identity.
p Once the link has been verified you can remove the text; the text simply allows the team to directly check with your website rather than messaging you and waiting for a reply. p Once the link has been verified you can remove the text; the text simply allows the team to directly check with your website rather than messaging you and waiting for a reply.