forked from
smokesignal.events/smokesignal
Fork i18n + search + filtering- v0.2
1templates/admin_denylist.en-us.html:24: <input class="input" type="text" placeholder="at://did:plc:..." name="subject" required>
2templates/admin_events.en-us.html:28: <input class="input" type="text" id="importAtUriInput" name="aturi" required="required"
3templates/admin_rsvps.en-us.html:42: <input class="input" type="text" name="aturi" placeholder="at://did:plc:abcdef/community.lexicon.calendar.rsvp/3jizzrxoalv2h" required>
4templates/create_event.en-us.link_form.html:13: value=link_form.link_name, error=link_form.link_name_error, extra='placeholder="Tickets"') }}
5templates/create_event.en-us.location_form.html:13: <label class="label" for="createEventLocationCountryInput">Country (required)</label>
6templates/create_event.en-us.location_form.html:31: <p class="help is-danger">{{ location_form.location_country_error }}</p>
7templates/create_event.en-us.location_form.html:191: error=location_form.location_name_error, class_extra=" is-static", extra=' readonly ') }}
8templates/create_event.en-us.location_form.html:195: error=location_form.location_street_error, class_extra=" is-static", extra=' readonly ') }}
9templates/create_event.en-us.location_form.html:201: error=location_form.location_locality_error, class_extra=" is-static", extra=' readonly ') }}
10templates/create_event.en-us.location_form.html:205: error=location_form.location_region_error, class_extra=" is-static", extra=' readonly ') }}
11templates/create_event.en-us.location_form.html:209: error=location_form.location_postal_code_error, class_extra=" is-static", extra=' readonly ') }}
12templates/create_event.en-us.partial.html:36: <label class="label" for="createEventNameInput">Name (required)</label>
13templates/create_event.en-us.partial.html:37: <div class="control {% if build_event_form.name_error %} has-icons-right{% endif %}"
14templates/create_event.en-us.partial.html:39: <input type="text" class="input {% if build_event_form.name_error %} is-danger{% endif %}"
15templates/create_event.en-us.partial.html:41: if build_event_form.name %}value="{{ build_event_form.name }}" {% endif %} required
16templates/create_event.en-us.partial.html:45: <p class="help is-danger">{{ build_event_form.name_error }}</p>
17templates/create_event.en-us.partial.html:52: <label class="label" for="createEventTextInput">Text (required)</label>
18templates/create_event.en-us.partial.html:54: <textarea class="textarea{% if build_event_form.description_error %} is-danger{% endif %}"
19templates/create_event.en-us.partial.html:56: placeholder="A helpful, brief description of the event." required
20templates/create_event.en-us.partial.html:60: <p class="help is-danger">{{ build_event_form.description_error }}</p>
21templates/create_event.en-us.partial.html:73: class="{% if build_event_form.status_error %}is-danger{% endif %}">
22templates/create_event.en-us.partial.html:98: <p class="help is-danger">{{ build_event_form.status_error }}</p>
23templates/create_event.en-us.partial.html:106: class="{% if build_event_form.mode_error %}is-danger{% endif %}">
24templates/create_event.en-us.partial.html:118: <p class="help is-danger">{{ build_event_form.mode_error }}</p>
25templates/create_event.en-us.starts_form.html:27: <label class="label" for="createEventStartsAtDate">Start Day (required)</label>
26templates/create_event.en-us.starts_form.html:31: value="{{ starts_form.starts_date }}" {% endif %} required />
27templates/create_event.en-us.starts_form.html:35: <label class="label" for="createEventStartsAtTime">Start Time (required)</label>
28templates/create_event.en-us.starts_form.html:39: value="{{ starts_form.starts_time }}" {% endif %} required />
29templates/create_event.en-us.starts_form.html:44: <p class="help is-danger">{{ starts_form.starts_at_error }}</p>
30templates/create_event.en-us.starts_form.html:52: <label class="label" for="createEventStartsAtDate">End Day (required)</label>
31templates/create_event.en-us.starts_form.html:60: <label class="label" for="createEventStartsAtTime">End Time (required)</label>
32templates/create_event.en-us.starts_form.html:69: <p class="help is-danger">{{ starts_form.ends_at_error }}</p>
33templates/create_rsvp.en-us.partial.html:41: <label class="label" for="createRsvpSubjectAtUriInput">Event AT-URI (required)</label>
34templates/create_rsvp.en-us.partial.html:42: <div class="control {% if build_rsvp_form.subject_aturi_error %} has-icons-right{% endif %}"
35templates/create_rsvp.en-us.partial.html:44: <input type="text" class="input {% if build_rsvp_form.subject_aturi_error %} is-danger{% endif %}"
36templates/create_rsvp.en-us.partial.html:46: if build_rsvp_form.subject_aturi %}value="{{ build_rsvp_form.subject_aturi }}" {% endif %} required
37templates/create_rsvp.en-us.partial.html:50: <p class="help is-danger">{{ build_rsvp_form.subject_aturi_error }}</p>
38templates/create_rsvp.en-us.partial.html:56: <div class="control {% if build_rsvp_form.subject_cid_error %} has-icons-right{% endif %}"
39templates/create_rsvp.en-us.partial.html:58: <input type="text" class="input {% if build_rsvp_form.subject_cid_error %} is-danger{% endif %}"
40templates/create_rsvp.en-us.partial.html:64: <p class="help is-danger">{{ build_rsvp_form.subject_cid_error }}</p>
41templates/create_rsvp.en-us.partial.html:73: class="{% if build_rsvp_form.status_error %}is-danger{% endif %}">
42templates/create_rsvp.en-us.partial.html:87: <p class="help is-danger">{{ build_rsvp_form.status_error }}</p>
43templates/form_include.html:1:{%- macro text_input(label, id, name="", value="", class_extra="", error="", extra="") -%}
44templates/form_include.html:5: <input type="text" class="input {{ class_extra }}{% if error %} is-danger{% endif %}" id="{{ id }}" name="{{ name }}" {% if value %} value="{{ value }}"{% endif %}{% autoescape false %} {{ extra }}{% endautoescape %}>
45templates/form_include.html:7: {% if error %}<p class="help is-danger">{{ error }}</p>{% endif %}
46templates/login.en-us.partial.html:7: <div class="control has-icons-left{% if handle_error %} has-icons-right{% endif %}" data-loading-class="is-loading">
47templates/login.en-us.partial.html:8: <input class="input{% if handle_error %} is-danger{% endif %}" type="text" id="loginHandleInput" name="handle" required="required" autocomplete="handle" {% if handle_input %}
48templates/login.en-us.partial.html:13: {% if handle_error %}<span class="icon is-small is-right">
49templates/login.en-us.partial.html:17: {% if handle_error %}<p class="help is-danger">{{ error_message }}</p>{% endif %}
50templates/view_rsvp.en-us.common.html:11: <input class="input" type="text" name="aturi" placeholder="at://did:plc:example/community.lexicon.calendar.rsvp/abcdef123" required>
51templates/create_event.en-us.link_form.html:13: value=link_form.link_name, error=link_form.link_name_error, extra='placeholder="Tickets"') }}
52templates/create_event.en-us.link_form.html:15: {{ text_input('Link (required)', 'linkValue', 'link_value',
53templates/create_event.en-us.location_form.html:191: error=location_form.location_name_error, class_extra=" is-static", extra=' readonly ') }}
54templates/create_event.en-us.location_form.html:195: error=location_form.location_street_error, class_extra=" is-static", extra=' readonly ') }}
55templates/create_event.en-us.location_form.html:201: error=location_form.location_locality_error, class_extra=" is-static", extra=' readonly ') }}
56templates/create_event.en-us.location_form.html:205: error=location_form.location_region_error, class_extra=" is-static", extra=' readonly ') }}
57templates/create_event.en-us.location_form.html:209: error=location_form.location_postal_code_error, class_extra=" is-static", extra=' readonly ') }}