- Fixed label on the organiser dashboard
- Work on event the check-in page
This commit is contained in:
parent
20d68a4807
commit
b012f3975a
|
|
@ -7,7 +7,6 @@
|
|||
|
||||
{!! HTML::style('assets/stylesheet/application.css') !!}
|
||||
{!!HTML::script('vendor/jquery/jquery.js')!!}
|
||||
{!!HTML::script('vendor/jquery-fastLiveFilter/jquery.fastLiveFilter.js')!!}
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">
|
||||
|
|
@ -21,6 +20,16 @@
|
|||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
$.ajaxSetup({
|
||||
headers: {
|
||||
'X-CSRF-Token': "<?php echo csrf_token() ?>"
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
|
|
@ -98,6 +107,10 @@
|
|||
background-color: #6784DB;
|
||||
|
||||
}
|
||||
|
||||
.attendee_search:focus {
|
||||
color: #fff;
|
||||
}
|
||||
.clearSearch {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@
|
|||
{{money($organiser->events->sum('sales_volume') + $organiser->events->sum('organiser_fees_volume'), 'EUR')}}
|
||||
</h3>
|
||||
<span>
|
||||
Tickets Sold
|
||||
Sales Volume
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue