diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/org/team/new.tmpl | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index c9116fb65b..43ad4d3d12 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.8.24.0129
\ No newline at end of file +0.8.25.0129
\ No newline at end of file diff --git a/templates/org/team/new.tmpl b/templates/org/team/new.tmpl index 6293efb62e..020eed384d 100644 --- a/templates/org/team/new.tmpl +++ b/templates/org/team/new.tmpl @@ -13,14 +13,14 @@ <div class="required field {{if .Err_TeamName}}error{{end}}"> <label for="team_name">{{.i18n.Tr "org.team_name"}}</label> {{if eq .Team.LowerName "owners"}} - <input type="hidden" name="team_name" value="{{.team_name}}"> + <input type="hidden" name="team_name" value="{{.Team.Name}}"> {{end}} - <input id="team_name" name="team_name" value="{{.team_name}}" required {{if eq .Team.LowerName "owners"}}disabled{{end}} autofocus> + <input id="team_name" name="team_name" value="{{.Team.Name}}" required {{if eq .Team.LowerName "owners"}}disabled{{end}} autofocus> <span class="help">{{.i18n.Tr "org.team_name_helper"}}</span> </div> <div class="field {{if .Err_Description}}error{{end}}"> - <label for="desc">{{.i18n.Tr "org.team_desc"}}</label> - <input id="desc" name="desc" value="{{.desc}}"> + <label for="description">{{.i18n.Tr "org.team_desc"}}</label> + <input id="description" name="description" value="{{.Team.Description}}"> <span class="help">{{.i18n.Tr "org.team_desc_helper"}}</span> </div> {{if not (eq .Team.LowerName "owners")}} |