Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
djnro
Commits
297f9f49
Commit
297f9f49
authored
Nov 19, 2012
by
Leonidas Poulopoulos
Browse files
Changed form field length
parent
091a592d
Changes
1
Hide whitespace changes
Inline
Side-by-side
templates/edumanage/servers_edit.html
View file @
297f9f49
...
...
@@ -99,7 +99,7 @@ $(document).ready(function() {
<div
class=
"control-group {% if form.secret.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_secret"
><b>
{% trans "Secret" %}
</b></label>
<div
class=
"controls"
>
<input
type=
"password"
maxlength=
"
16
"
name=
"secret"
id=
"id_secret"
{%
if
edit
%}
value=
'{{form.instance.secret}}'
{%
endif
%}
{%
if
form.data.secret
%}
value=
'{{form.data.secret}}'
{%
endif
%}
>
<input
type=
"password"
maxlength=
"
80
"
name=
"secret"
id=
"id_secret"
{%
if
edit
%}
value=
'{{form.instance.secret}}'
{%
endif
%}
{%
if
form.data.secret
%}
value=
'{{form.data.secret}}'
{%
endif
%}
>
{% if form.secret.errors %}
<span
class=
"help-inline"
>
{{ form.secret.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.secret.help_text }}
</span>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment