Merge branch 'giftcard' of github.com:pretix/pretix into giftcard

This commit is contained in:
Raphael Michel
2019-10-17 17:00:10 +02:00

View File

@@ -99,13 +99,15 @@
</li> </li>
{% endfor %} {% endfor %}
<li> <li>
<select name="add" class="form-control"> {% if other_organizers %}
<li>
<select name="add" class="form-control">
<option></option> <option></option>
{% for o in other_organizers %} {% for o in other_organizers %}
<option value="{{ o.slug }}">{{ o }}</option> <option value="{{ o.slug }}">{{ o }}</option>
{% endfor %} {% endfor %}
</select> </select>
<button class="btn btn-primary" type="submit"><span class="fa fa-plus"></span></button> <button class="btn btn-primary btn-sm" type="submit"><span class="fa fa-plus"></span></button>
</li> </li>
</ul> </ul>
</fieldset> </fieldset>