Control: add event slug errors as help-text (#5288)

This commit is contained in:
Richard Schreiber
2025-07-08 13:49:41 +02:00
committed by GitHub
parent 6bc88b3c0d
commit a5f7f2bd0c

View File

@@ -6,7 +6,7 @@
<fieldset> <fieldset>
<legend>{% trans "General information" %}</legend> <legend>{% trans "General information" %}</legend>
{% bootstrap_field form.name layout="control" %} {% bootstrap_field form.name layout="control" %}
<div class="form-group"> <div class="form-group{% if form.slug.errors %} has-error{% endif %}">
<label class="col-md-3 control-label" for="{{ form.slug.id_for_label }}">{{ form.slug.label }}</label> <label class="col-md-3 control-label" for="{{ form.slug.id_for_label }}">{{ form.slug.label }}</label>
<div class="col-md-9 form-inline"> <div class="col-md-9 form-inline">
<button class="btn btn-default pull-right flip" type="button" id="event-slug-random-generate" <button class="btn btn-default pull-right flip" type="button" id="event-slug-random-generate"
@@ -14,6 +14,9 @@
{% trans "Set to random" %} {% trans "Set to random" %}
</button> </button>
{% bootstrap_field form.slug form_group_class="helper-display-inline" show_label=False layout="inline" %} {% bootstrap_field form.slug form_group_class="helper-display-inline" show_label=False layout="inline" %}
{% for error in form.slug.errors %}
<div class="help-block">{{ error }}</div>
{% endfor %}
<div class="help-block"> <div class="help-block">
{% blocktrans trimmed %} {% blocktrans trimmed %}
This is the address users can buy your tickets at. Should be short, only contain lowercase This is the address users can buy your tickets at. Should be short, only contain lowercase