diff options
author | r <r@freesoftwareextremist.com> | 2019-12-22 16:27:49 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-22 16:27:49 +0000 |
commit | 05daa6a148ee4d5d43ab1f055862b6a4b2eb75ec (patch) | |
tree | 0e82031aec5432ca06b5aefeb2151a27757f6312 /templates | |
parent | 2506615f4228de4189202123d414e8f22b2c1c1b (diff) | |
download | bloat-05daa6a148ee4d5d43ab1f055862b6a4b2eb75ec.tar.gz bloat-05daa6a148ee4d5d43ab1f055862b6a4b2eb75ec.zip |
Add nsfw checkbox for posts
Diffstat (limited to 'templates')
-rw-r--r-- | templates/postform.tmpl | 26 | ||||
-rw-r--r-- | templates/status.tmpl | 4 |
2 files changed, 19 insertions, 11 deletions
diff --git a/templates/postform.tmpl b/templates/postform.tmpl index 309e139..ea93efa 100644 --- a/templates/postform.tmpl +++ b/templates/postform.tmpl @@ -9,17 +9,25 @@ <textarea id="post-content" name="content" class="post-content" cols="50" rows="5">{{if .ReplyContext}}{{.ReplyContext.ReplyContent}}{{end}}</textarea> </div> <div> - <label for ="post-visilibity"> Visibility </label> - <select id="post-visilibity" name="visibility"> - <option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option> - <option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option> - <option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option> - <option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option> - </select> + <span class="post-form-field"> + <label for="post-visilibity"> Visibility </label> + <select id="post-visilibity" name="visibility"> + <option value="public" {{if eq .DefaultVisibility "public"}}selected{{end}}>Public</option> + <option value="unlisted" {{if eq .DefaultVisibility "unlisted"}}selected{{end}}>Unlisted</option> + <option value="private" {{if eq .DefaultVisibility "private"}}selected{{end}}>Private</option> + <option value="direct" {{if eq .DefaultVisibility "direct"}}selected{{end}}>Direct</option> + </select> + </span> + <span class="post-form-field"> + <input type="checkbox" id="nsfw-checkbox" name="is_nsfw" value="on"> + <label for="nsfw-checkbox"> Is NSFW </label> + </span> </div> <div> - <label for ="post-file-picker"> Attachments </label> - <input id="post-file-picker" type="file" name="attachments" multiple> + <span class="post-form-field"> + <label for ="post-file-picker"> Attachments </label> + <input id="post-file-picker" type="file" name="attachments" multiple> + </span> </div> <button type="submit"> Post </button> </form> diff --git a/templates/status.tmpl b/templates/status.tmpl index e62296d..c27a674 100644 --- a/templates/status.tmpl +++ b/templates/status.tmpl @@ -2,7 +2,7 @@ {{if .Reblog}} <div class="retweet-info"> <a class="img-link" href="/user/{{.Account.ID}}"> - <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" /> + <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" /> </a> <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span> <span class="icon dripicons-retweet retweeted"></span> @@ -15,7 +15,7 @@ {{if not .HideAccountInfo}} <div class="status-profile-img-container"> <a class="img-link" href="/user/{{.Account.ID}}"> - <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" /> + <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" /> </a> </div> {{end}} |