mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
Improves text for artist link creation
This commit is contained in:
parent
8ba486b9ec
commit
6944cf0054
5 changed files with 14 additions and 17 deletions
|
@ -7,19 +7,15 @@
|
|||
.field
|
||||
p
|
||||
label for="tag_name"
|
||||
' The tag,
|
||||
em> specific
|
||||
' to you, usually
|
||||
code>
|
||||
| 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="]
|
||||
' 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
|
||||
a> href="/commissions" commissions
|
||||
' listing. Do not request a link if the source has no artwork that you yourself did not create.
|
||||
= 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="]
|
||||
= error_tag f, :tag
|
||||
|
||||
.field
|
||||
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
|
||||
= error_tag f, :uri
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
h1 Artist Links
|
||||
p
|
||||
a.button href=Routes.profile_artist_link_path(@conn, :new, @user)
|
||||
' Create a link
|
||||
' Request a link
|
||||
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
|
||||
thead
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -32,11 +32,12 @@ h3 Status
|
|||
- unverified?(@artist_link) ->
|
||||
p
|
||||
strong This link is pending verification by a member of the administration team.
|
||||
p
|
||||
h3 To have your link verified as fast as possible, please place this text somewhere on the page you are linking.
|
||||
p
|
||||
code
|
||||
h1 = @artist_link.verification_code
|
||||
.dnp-warning
|
||||
p
|
||||
h3 To have your link verified as fast as possible, please place this text somewhere on the page you are linking.
|
||||
p
|
||||
code
|
||||
h1 = @artist_link.verification_code
|
||||
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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue