diff options
author | delvh <dev.lh@web.de> | 2021-01-23 11:30:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 11:30:28 +0100 |
commit | 9872b8d97ad899ada05ccd4432a5dfa5f3048a09 (patch) | |
tree | 6cceaa4b8dd3afd894e0e5656dcc3ad449ecca7d /templates | |
parent | 91e59a66904a54c2b7fb6174c5c5aef4a89f1f39 (diff) | |
download | gitea-9872b8d97ad899ada05ccd4432a5dfa5f3048a09.tar.gz gitea-9872b8d97ad899ada05ccd4432a5dfa5f3048a09.zip |
Improve Description in new/ edit Project template (#14429)
Fixes #14358
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/projects/new.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/projects/new.tmpl b/templates/repo/projects/new.tmpl index f668ab6018..3a99d56f9e 100644 --- a/templates/repo/projects/new.tmpl +++ b/templates/repo/projects/new.tmpl @@ -29,8 +29,8 @@ <input name="title" placeholder="{{.i18n.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required> </div> <div class="field"> - <label>{{.i18n.Tr "repo.projects.desc"}}</label> - <textarea name="content">{{.content}}</textarea> + <label>{{.i18n.Tr "repo.projects.description"}}</label> + <textarea name="content" placeholder="{{.i18n.Tr "repo.projects.description_placeholder"}}">{{.content}}</textarea> </div> {{if not .PageIsEditProjects}} |