diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/en/rsvp.htm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/en/rsvp.htm b/templates/en/rsvp.htm index 5d584d0..5d10456 100644 --- a/templates/en/rsvp.htm +++ b/templates/en/rsvp.htm @@ -106,8 +106,7 @@ <div class="col-md-5"> <textarea id="kidsnames" name="kidsnames" placeholder="Your kids' names" class="form-control" rows="3" - {%if not form['kids']%} disabled{% endif %}>{{form['kidsnames']}} - </textarea> + {%if not form['kids']%} disabled{% endif %}>{{form['kidsnames'] if form['kidsnames']}}</textarea> </div> </div> <p style="text-indent:3em"> @@ -118,7 +117,7 @@ <label for="mailing" class="col-md-2 control-label">Comments:</label> <div class="col-md-5"> <textarea id="comments" name="comments" placeholder="Your comments" - class="form-control" rows="3">{{form['comments']}}</textarea> + class="form-control" rows="3">{{form['comments'] if form['comments']}}</textarea> </div> </div> <div class="form-group"> |
