Skip to content

Commit

Permalink
Fix dial vpn new settings default value('no').
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ntix committed Sep 28, 2014
1 parent 33a78d9 commit 2110e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/vpn/dial/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def settings():
return redirect(url_for('dial.settings'))
if settings:
form.subnet.data = settings.subnet
form.c2c.data = settings.c2c
form.duplicate.data = settings.duplicate
form.c2c.data = settings.c2c or 'no'
form.duplicate.data = settings.duplicate or 'no'
return render_template('dial/settings.html', settings=settings, form=form)


Expand Down

0 comments on commit 2110e95

Please sign in to comment.