Summary: Fix some visual glitches with the IPR search page
- Legacy-Id: 8898
This commit is contained in:
parent
b3823d5768
commit
5bc15c427e
|
@ -2,25 +2,25 @@
|
|||
|
||||
<h1>IPR Search</h1>
|
||||
|
||||
<form role="form" id="search-form">
|
||||
<form role="form">
|
||||
{% if user|has_role:"Secretariat" %}
|
||||
<h2>State Filter</h2>
|
||||
<div class="col-md-12">
|
||||
<h2>State Filter</h2>
|
||||
|
||||
<div class="form-group">
|
||||
{{ form.state.label_tag }}
|
||||
<div class="input-group">
|
||||
<div class="form-group">
|
||||
{% bootstrap_label form.state.label label_for=form.state.id_for_label label_class="control-label" %}
|
||||
|
||||
{% render_field form.state %}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2>Document search</h2>
|
||||
|
||||
<div class="form-group">
|
||||
{{ form.draft.label_tag }}
|
||||
<div class="input-group">
|
||||
{% bootstrap_label form.draft.label label_for=form.draft.id_for_label label_class="control-label" %}
|
||||
<div class="input-group">
|
||||
{% render_field form.draft class="form-control" placeholder="draft-..." %}
|
||||
<span class="input-group-btn">
|
||||
<button class="btn btn-primary" type="submit" name="submit" value="draft"><span class="fa fa-search"></span> Search</button>
|
||||
|
@ -29,7 +29,7 @@
|
|||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
{{ form.rfc.label_tag }}
|
||||
{% bootstrap_label form.rfc.label label_for=form.rfc.id_for_label label_class="control-label" %}
|
||||
<div class="input-group">
|
||||
{% render_field form.rfc class="form-control" placeholder="123..." %}
|
||||
<span class="input-group-btn">
|
||||
|
@ -96,7 +96,6 @@
|
|||
<span class="help-block">This search string must contain at least three characters, including at least one digit, and include punctuation marks. For best results, please enter the entire string, or as much of it as possible.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a class="btn btn-default pull-right" href="{% url "ietf.ipr.views.showlist" %}">Back</a>
|
||||
|
||||
|
|
Loading…
Reference in a new issue