Changeset - 8baf97380e08
[Not reviewed]
dev
0 3 0
Dennis Fink - 9 years ago 2015-10-21 10:40:43
dennis.fink@c3l.lu
Set classes for select fields correctly

There was a typo. The underscore should be placed after class, not before
3 files changed with 6 insertions and 6 deletions:
0 comments (0 inline, 0 general)
ennstatus/templates/donate/index.html
Show inline comments
 
@@ -68,9 +68,9 @@
 
            <form class="form-inline" role="form" method="POST" action"{{ url_for('donate.index') }}">
 
              {{ form.hidden_tag() }}
 
              <div class="form-group">
 
                {{ form.country(_class="form-class") }}
 
                {{ form.country(class_="form-control input-sm") }}
 
                <input type="submit" class="btn btn-primary btn-sm" value="Submit">
 
              </div>
 
              <input type="submit" class="btn btn-primary btn-xs" value="Submit">
 
            </form>
 
          </div>
 
          <div class="clearfix"></div>
ennstatus/templates/donate/received.html
Show inline comments
 
@@ -18,9 +18,9 @@
 
        {{ form.hidden_tag() }}
 
        <div class="form-group">
 
          {{ form.year.label }}
 
          {{ form.year(_class="form-control") }}
 
          {{ form.year(class_="form-control") }}
 
          {{ form.month.label }}
 
          {{ form.month(_class="form-control") }}
 
          {{ form.month(class_="form-control") }}
 
        </div>
 
        <input type="submit" class="btn btn-primary btn-sm" value="Submit">
 
      </form> 
ennstatus/templates/root/contact.html
Show inline comments
 
@@ -14,9 +14,9 @@
 
        {{ form.hidden_tag()}}
 
        <div class="form-group">
 
          {{ form.country.label }}
 
          {{ form.country(_class="form-control") }}
 
          {{ form.country(class_="form-control input-sm") }}
 
          <input type="submit" class="btn btn-primary btn-sm" value="Submit">
 
        </div>
 
        <input type="submit" class="btn btn-primary btn-xs" value="Submit">
 
      </form>
 
    </div>
 
    <div class="clearfix"></div>
0 comments (0 inline, 0 general)