-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit_ticket
45 lines (44 loc) · 1.56 KB
/
submit_ticket
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<section class="fw-sticky fw-searchbar-wrapper">
<div class="container">
<div class="row align-items-center py-8">
<div class="col-md-6">
{% element 'secondary_nav' %}
{
"breadcrumbs": [
{ "label":"{{ 'portal_translations.header.tabs.home' | t }}", "url":"{{portal.home_url}}" },
{ "label":"{{ "portal_translations.tickets.new.title" | t }}", "url":"{{portal.new_ticket_url}}" }
]
}
{% endelement %}
</div>
<div class="col-md-4 ms-auto">
{{ portal | search_element }}
</div>
</div>
</div>
</section>
<section class="container-fluid px-0 fw-page-title-wrapper">
<div class="container">
<div class="py-24 py-lg-60 mx-0 fw-search-meta-info g-0">
<div class="text-start">
<h1 class="fw-page-title">{{ "portal_translations.tickets.new.title" | t}}</h1>
</div>
</div>
</div>
</section>
<section class="container-fluid pt-32 pb-60">
<div class="container px-0">
{{ page_message }}
<div class="row fw-wrapper-shadow fw-new-ticket-wrapper mx-0 g-0 bg-dark">
<div class="col-lg-9 fw-content-wrapper mb-16 mb-lg-0">
<div class="fw-content fw-new-ticket">
{% snippet new_ticket_form %}
</div>
</div>
<div class="col-lg-3 fw-sidebar-wrapper d-none">
{% snippet new_ticket_sidebar %}
</div>
</div>
</div>
</section>
{% element 'code_insert' %}{}{% endelement %}