More search and replace for BS changes

Thought I'd got them all. Clearly not!
This commit is contained in:
2020-10-17 18:11:42 +01:00
parent 848e8c8ccd
commit 4bb1c0a2a4
20 changed files with 55 additions and 67 deletions

View File

@@ -1,12 +0,0 @@
{# pass in variable "profile" to this template #}
<button title="{{profile.name}}" type="button" class="btn btn-default btn-xs" data-container="body" data-html="true" data-trigger='hover focus' data-toggle="popover" data-content='
<img src="{{profile.profile_picture}}" class="img-fluid rounded center-block" style="max-width:4em" />
<dl class="dl-vertical">
<dt>Email</dt>
<dd>{{profile.email}}</dd>
<dt>Phone</dt>
<dd>{{profile.phone}}</dd>
</dl>
'>{{profile.first_name}}</button>

View File

@@ -19,7 +19,7 @@
</div>
<div class="form-group">
<label for="{{form.email.id_for_label}}" class="control-label">{{form.email.label}}</label>
<label for="{{form.email.id_for_label}}" class="col-form-label">{{form.email.label}}</label>
{% render_field form.email type="email" class+="form-control" placeholder=form.email.label %}
</div>
@@ -28,7 +28,7 @@
</div>
<div class="form-group">
<label for="{{form.phone.id_for_label}}" class="control-label">{{form.phone.label}}</label>
<label for="{{form.phone.id_for_label}}" class="col-form-label">{{form.phone.label}}</label>
{% render_field form.phone type="tel" class+="form-control" placeholder=form.phone.label %}
</div>