2016-03-25 01:18:05 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<title>
|
|
|
|
@section('title')
|
|
|
|
@show
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
:: {{ $snipeSettings->site_name }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</title>
|
|
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
2018-08-28 13:10:27 -07:00
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<link rel="shortcut icon" type="image/ico" href="{{ url(asset('favicon.ico')) }}">
|
2018-09-28 14:09:48 -07:00
|
|
|
|
2018-08-28 13:10:27 -07:00
|
|
|
<script nonce="{{ csrf_token() }}">
|
|
|
|
window.Laravel = { csrfToken: '{{ csrf_token() }}' };
|
|
|
|
</script>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-09-28 14:09:48 -07:00
|
|
|
{{-- stylesheets --}}
|
|
|
|
<link rel="stylesheet" href="{{ mix('css/all.css') }}">
|
|
|
|
@if (($snipeSettings) && ($snipeSettings->skin!=''))
|
|
|
|
<link rel="stylesheet" href="{{ mix('css/skins/skin-'.$snipeSettings->skin.'.min.css') }}">
|
|
|
|
@endif
|
|
|
|
{{-- page level css --}}
|
2018-08-28 13:10:27 -07:00
|
|
|
@stack('css')
|
2017-01-11 15:21:33 -08:00
|
|
|
|
2018-09-28 14:09:48 -07:00
|
|
|
{{-- Custom header color --}}
|
|
|
|
@if (($snipeSettings) && ($snipeSettings->header_color!=''))
|
2017-10-01 12:59:55 -07:00
|
|
|
<style nonce="{{ csrf_token() }}">
|
2018-03-02 17:50:40 -08:00
|
|
|
.main-header .navbar, .main-header .logo {
|
2018-09-28 14:09:48 -07:00
|
|
|
background-color: {{ $snipeSettings->header_color }};
|
|
|
|
background: -webkit-linear-gradient(top, {{ $snipeSettings->header_color }} 0%,{{ $snipeSettings->header_color }} 100%);
|
|
|
|
background: linear-gradient(to bottom, {{ $snipeSettings->header_color }} 0%,{{ $snipeSettings->header_color }} 100%);
|
|
|
|
border-color: {{ $snipeSettings->header_color }};
|
2018-03-02 17:50:40 -08:00
|
|
|
}
|
|
|
|
.skin-blue .sidebar-menu > li:hover > a, .skin-blue .sidebar-menu > li.active > a {
|
|
|
|
border-left-color: {{ $snipeSettings->header_color }};
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
background-color: {{ $snipeSettings->header_color }};
|
|
|
|
border-color: {{ $snipeSettings->header_color }};
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
</style>
|
2018-09-28 14:09:48 -07:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-09-28 14:09:48 -07:00
|
|
|
{{-- Custom CSS --}}
|
|
|
|
@if (($snipeSettings) && ($snipeSettings->custom_css))
|
|
|
|
<style>
|
|
|
|
{!! $snipeSettings->show_custom_css() !!}
|
|
|
|
</style>
|
|
|
|
@endif
|
2018-07-25 19:00:03 -07:00
|
|
|
|
2017-09-28 19:45:15 -07:00
|
|
|
<script nonce="{{ csrf_token() }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
window.snipeit = {
|
|
|
|
settings: {
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
"per_page": {{ $snipeSettings->per_page }}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
};
|
2017-10-01 12:59:55 -07:00
|
|
|
</script>
|
2017-10-24 16:57:04 -07:00
|
|
|
<!-- Add laravel routes into javascript Primarily useful for vue.-->
|
2017-10-01 12:59:55 -07:00
|
|
|
@routes
|
2016-08-30 12:58:08 -07:00
|
|
|
|
2018-09-28 14:09:48 -07:00
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
|
|
|
|
@if ($snipeSettings->load_remote=='1')
|
|
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js" integrity="sha384-qFIkRsVO/J5orlMvxK1sgAt2FXT67og+NyFTITYzvbIP1IJavVEKZM7YWczXkwpB" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js" integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo" crossorigin="anonymous"></script>
|
|
|
|
|
|
|
|
@else
|
|
|
|
<script src="{{ url(asset('js/html5shiv.js')) }}" nonce="{{ csrf_token() }}"></script>
|
|
|
|
<script src="{{ url(asset('js/respond.js')) }}" nonce="{{ csrf_token() }}"></script>
|
|
|
|
@endif
|
|
|
|
<![endif]-->
|
2016-08-30 12:58:08 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
</head>
|
2017-10-25 20:10:41 -07:00
|
|
|
<body class="sidebar-mini skin-blue {{ (session('menu_state')!='open') ? 'sidebar-mini sidebar-collapse' : '' }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="wrapper">
|
|
|
|
|
|
|
|
<header class="main-header">
|
|
|
|
|
|
|
|
<!-- Logo -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Header Navbar: style can be found in header.less -->
|
|
|
|
<nav class="navbar navbar-static-top" role="navigation">
|
2016-05-24 17:59:02 -07:00
|
|
|
<!-- Sidebar toggle button above the compact sidenav -->
|
2016-03-25 01:18:05 -07:00
|
|
|
<a href="#" style="color: white" class="sidebar-toggle btn btn-white" data-toggle="offcanvas" role="button">
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
</a>
|
2016-05-31 19:19:32 -07:00
|
|
|
<ul class="nav navbar-nav navbar-left">
|
|
|
|
<li class="left-navblock">
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
@if ($snipeSettings->brand == '3')
|
2016-12-15 16:41:36 -08:00
|
|
|
<a class="logo navbar-brand no-hover" href="{{ url('/') }}">
|
2017-08-26 17:43:00 -07:00
|
|
|
@if ($snipeSettings->logo!='')
|
2017-10-25 16:15:50 -07:00
|
|
|
<img class="navbar-brand-img" src="{{ url('/') }}/uploads/{{ $snipeSettings->logo }}">
|
2017-08-26 17:43:00 -07:00
|
|
|
@endif
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
{{ $snipeSettings->site_name }}
|
2016-05-31 19:19:32 -07:00
|
|
|
</a>
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
@elseif ($snipeSettings->brand == '2')
|
2016-12-15 16:41:36 -08:00
|
|
|
<a class="logo navbar-brand no-hover" href="{{ url('/') }}">
|
2017-08-26 17:43:00 -07:00
|
|
|
@if ($snipeSettings->logo!='')
|
2016-12-15 16:41:36 -08:00
|
|
|
<img class="navbar-brand-img" src="{{ url('/') }}/uploads/{{ $snipeSettings->logo }}">
|
2017-08-26 17:43:00 -07:00
|
|
|
@endif
|
2016-05-31 19:19:32 -07:00
|
|
|
</a>
|
|
|
|
@else
|
2016-12-15 16:41:36 -08:00
|
|
|
<a class="logo no-hover" href="{{ url('/') }}">
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
{{ $snipeSettings->site_name }}
|
2016-05-31 19:19:32 -07:00
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
</li>
|
2016-12-14 08:20:05 -08:00
|
|
|
</ul>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<!-- Navbar Right Menu -->
|
2016-05-31 19:19:32 -07:00
|
|
|
<div class="navbar-custom-menu">
|
|
|
|
<ul class="nav navbar-nav">
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('index', \App\Models\Asset::class)
|
2016-10-12 12:06:28 -07:00
|
|
|
<li {!! (Request::is('hardware*') ? ' class="active"' : '') !!}>
|
2016-12-15 16:41:36 -08:00
|
|
|
<a href="{{ url('hardware') }}">
|
2016-10-12 12:06:28 -07:00
|
|
|
<i class="fa fa-barcode"></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('view', \App\Models\License::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li {!! (Request::is('licenses*') ? ' class="active"' : '') !!}>
|
2016-12-15 11:41:08 -08:00
|
|
|
<a href="{{ route('licenses.index') }}">
|
2016-10-12 12:06:28 -07:00
|
|
|
<i class="fa fa-floppy-o"></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('index', \App\Models\Accessory::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li {!! (Request::is('accessories*') ? ' class="active"' : '') !!}>
|
2016-12-15 04:27:17 -08:00
|
|
|
<a href="{{ route('accessories.index') }}">
|
2016-10-12 12:06:28 -07:00
|
|
|
<i class="fa fa-keyboard-o"></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('index', \App\Models\Consumable::class)
|
2016-12-26 15:17:12 -08:00
|
|
|
<li {!! (Request::is('consumables*') ? ' class="active"' : '') !!}>
|
2016-12-15 16:41:36 -08:00
|
|
|
<a href="{{ url('consumables') }}">
|
2016-10-12 12:06:28 -07:00
|
|
|
<i class="fa fa-tint"></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('view', \App\Models\Component::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li {!! (Request::is('components*') ? ' class="active"' : '') !!}>
|
2016-12-15 19:59:42 -08:00
|
|
|
<a href="{{ route('components.index') }}">
|
2016-10-12 12:06:28 -07:00
|
|
|
<i class="fa fa-hdd-o"></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-06-02 02:39:36 -07:00
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('index', \App\Models\Asset::class)
|
2016-05-31 19:19:32 -07:00
|
|
|
<form class="navbar-form navbar-left form-horizontal" role="search" action="{{ route('findbytag/hardware') }}" method="get">
|
|
|
|
<div class="col-xs-12 col-md-12">
|
|
|
|
<div class="col-xs-12 form-group">
|
|
|
|
<label class="sr-only" for="tagSearch">{{ trans('general.lookup_by_tag') }}</label>
|
|
|
|
<input type="text" class="form-control" id="tagSearch" name="assetTag" placeholder="{{ trans('general.lookup_by_tag') }}">
|
|
|
|
<input type="hidden" name="topsearch" value="true">
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-1">
|
|
|
|
<button type="submit" class="btn btn-primary pull-right"><i class="fa fa-search"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-08-02 00:54:38 -07:00
|
|
|
|
2016-06-02 02:39:36 -07:00
|
|
|
@can('admin')
|
2016-05-31 19:19:32 -07:00
|
|
|
<li class="dropdown">
|
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.create') }}
|
2016-05-31 19:19:32 -07:00
|
|
|
<b class="caret"></b>
|
|
|
|
</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
<ul class="dropdown-menu">
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('create', \App\Models\Asset::class)
|
2016-03-25 01:18:05 -07:00
|
|
|
<li {!! (Request::is('hardware/create') ? 'class="active>"' : '') !!}>
|
2016-12-15 04:27:17 -08:00
|
|
|
<a href="{{ route('hardware.create') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-barcode fa-fw"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.asset') }}
|
|
|
|
</a>
|
2016-05-31 18:35:48 -07:00
|
|
|
</li>
|
2016-08-02 00:54:38 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('create', \App\Models\License::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li {!! (Request::is('licenses/create') ? 'class="active"' : '') !!}>
|
2016-12-15 11:57:19 -08:00
|
|
|
<a href="{{ route('licenses.create') }}">
|
2016-04-19 19:42:16 -07:00
|
|
|
<i class="fa fa-floppy-o fa-fw"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.license') }}
|
|
|
|
</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-08-02 00:54:38 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('create', \App\Models\Accessory::class)
|
2016-12-15 04:27:17 -08:00
|
|
|
<li {!! (Request::is('accessories/create') ? 'class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('accessories.create') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-keyboard-o fa-fw"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.accessory') }}</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-08-02 00:54:38 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('create', \App\Models\Consumable::class)
|
2016-12-15 04:27:17 -08:00
|
|
|
<li {!! (Request::is('consunmables/create') ? 'class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('consumables.create') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-tint fa-fw"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.consumable') }}
|
|
|
|
</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-08-02 00:54:38 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('create', \App\Models\Component::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li {!! (Request::is('components/create') ? 'class="active"' : '') !!}>
|
2016-12-15 19:59:42 -08:00
|
|
|
<a href="{{ route('components.create') }}">
|
2018-07-02 18:10:25 -07:00
|
|
|
<i class="fa fa-hdd-o fa-fw"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.component') }}
|
|
|
|
</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-08-02 00:54:38 -07:00
|
|
|
@endcan
|
2017-12-01 17:50:01 -08:00
|
|
|
@can('create', \App\Models\User::class)
|
|
|
|
<li {!! (Request::is('users/create') ? 'class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('users.create') }}">
|
|
|
|
<i class="fa fa-user fa-fw"></i>
|
|
|
|
{{ trans('general.user') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
</ul>
|
2016-10-12 12:06:28 -07:00
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-07-29 14:17:59 -07:00
|
|
|
|
2016-06-02 02:39:36 -07:00
|
|
|
@can('admin')
|
2017-11-08 03:08:17 -08:00
|
|
|
@if ($snipeSettings->show_alerts_in_menu=='1')
|
2016-03-25 01:18:05 -07:00
|
|
|
<!-- Tasks: style can be found in dropdown.less -->
|
|
|
|
<?php $alert_items = \App\Helpers\Helper::checkLowInventory(); ?>
|
|
|
|
|
|
|
|
<li class="dropdown tasks-menu">
|
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
|
|
|
<i class="fa fa-flag-o"></i>
|
|
|
|
@if (count($alert_items))
|
2016-05-31 18:35:48 -07:00
|
|
|
<span class="label label-danger">{{ count($alert_items) }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
@endif
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li class="header">You have {{ count($alert_items) }} items below or almost below minimum quantity levels</li>
|
|
|
|
<li>
|
|
|
|
<!-- inner menu: contains the actual data -->
|
|
|
|
<ul class="menu">
|
|
|
|
|
|
|
|
@for($i=0; count($alert_items) > $i; $i++)
|
|
|
|
|
|
|
|
<li><!-- Task item -->
|
2017-09-05 17:54:58 -07:00
|
|
|
<a href="{{route($alert_items[$i]['type'].'.show', $alert_items[$i]['id'])}}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<h3>{{ $alert_items[$i]['name'] }}
|
|
|
|
<small class="pull-right">
|
|
|
|
{{ $alert_items[$i]['remaining'] }} remaining
|
|
|
|
</small>
|
|
|
|
</h3>
|
|
|
|
<div class="progress xs">
|
|
|
|
<div class="progress-bar progress-bar-yellow" style="width: {{ $alert_items[$i]['percent'] }}%" role="progressbar" aria-valuenow="{{ $alert_items[$i]['percent'] }}" aria-valuemin="0" aria-valuemax="100">
|
|
|
|
<span class="sr-only">{{ $alert_items[$i]['percent'] }}% Complete</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<!-- end task item -->
|
|
|
|
@endfor
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{{-- <li class="footer">
|
|
|
|
<a href="#">View all tasks</a>
|
|
|
|
</li> --}}
|
|
|
|
</ul>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2017-11-08 03:08:17 -08:00
|
|
|
@endif
|
2016-06-02 02:39:36 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<!-- User Account: style can be found in dropdown.less -->
|
2017-01-11 14:52:05 -08:00
|
|
|
@if (Auth::check())
|
2016-03-25 01:18:05 -07:00
|
|
|
<li class="dropdown user user-menu">
|
|
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
2016-12-23 17:52:00 -08:00
|
|
|
@if (Auth::user()->present()->gravatar())
|
|
|
|
<img src="{{ Auth::user()->present()->gravatar() }}" class="user-image" alt="User Image">
|
2016-03-25 01:18:05 -07:00
|
|
|
@else
|
|
|
|
<i class="fa fa-user fa-fws"></i>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<span class="hidden-xs">{{ Auth::user()->first_name }} <b class="caret"></b></span>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<!-- User image -->
|
2016-05-31 18:35:48 -07:00
|
|
|
<li {!! (Request::is('account/profile') ? ' class="active"' : '') !!}>
|
2016-03-25 01:18:05 -07:00
|
|
|
<a href="{{ route('view-assets') }}">
|
2017-11-02 10:27:53 -07:00
|
|
|
<i class="fa fa-check fa-fw"></i>
|
|
|
|
{{ trans('general.viewassets') }}
|
2017-01-11 03:38:55 -08:00
|
|
|
</a></li>
|
2018-04-04 17:33:02 -07:00
|
|
|
|
|
|
|
<li {!! (Request::is('account/requested') ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('account.requested') }}">
|
2018-07-02 18:10:25 -07:00
|
|
|
<i class="fa fa-check fa-disk fa-fw"></i>
|
2018-04-04 17:33:02 -07:00
|
|
|
Requested Assets
|
|
|
|
</a></li>
|
2018-07-28 03:45:33 -07:00
|
|
|
<li {!! (Request::is('account/accept') ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('account.accept') }}">
|
|
|
|
<i class="fa fa-check fa-disk fa-fw"></i>
|
|
|
|
Accept Assets
|
|
|
|
</a></li>
|
2018-04-04 17:33:02 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-01-11 03:38:55 -08:00
|
|
|
<li>
|
2016-03-25 01:18:05 -07:00
|
|
|
<a href="{{ route('profile') }}">
|
2017-11-02 10:27:53 -07:00
|
|
|
<i class="fa fa-user fa-fw"></i>
|
|
|
|
{{ trans('general.editprofile') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2017-08-22 12:09:04 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('account.password.index') }}">
|
2017-11-02 10:27:53 -07:00
|
|
|
<i class="fa fa-asterisk fa-fw"></i>
|
|
|
|
{{ trans('general.changepassword') }}
|
2017-08-22 12:09:04 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-01-11 03:38:55 -08:00
|
|
|
@can('self.api')
|
|
|
|
<li>
|
|
|
|
<a href="{{ route('user.api') }}">
|
2017-01-11 03:55:47 -08:00
|
|
|
<i class="fa fa-user-secret fa-fw"></i> Manage API Keys
|
2017-01-11 03:38:55 -08:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2016-03-25 18:20:57 -07:00
|
|
|
<li class="divider"></li>
|
2016-03-25 01:18:05 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ url('/logout') }}">
|
|
|
|
<i class="fa fa-sign-out fa-fw"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.logout') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2017-01-11 14:52:05 -08:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
2016-06-02 02:39:36 -07:00
|
|
|
@can('superadmin')
|
2017-07-07 23:44:48 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('settings.index') }}">
|
2017-07-08 01:41:07 -07:00
|
|
|
<i class="fa fa-cogs fa-fw"></i>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
</ul>
|
|
|
|
</div>
|
2016-05-31 18:35:48 -07:00
|
|
|
</nav>
|
2016-06-01 21:00:29 -07:00
|
|
|
<a href="#" style="float:left" class="sidebar-toggle-mobile visible-xs btn" data-toggle="offcanvas" role="button">
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
<i class="fa fa-bars"></i>
|
|
|
|
</a>
|
2016-05-31 19:19:32 -07:00
|
|
|
<!-- Sidebar toggle button-->
|
2016-06-01 20:30:12 -07:00
|
|
|
</header>
|
2016-12-14 08:20:05 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
<!-- Left side column. contains the logo and sidebar -->
|
|
|
|
<aside class="main-sidebar">
|
|
|
|
<!-- sidebar: style can be found in sidebar.less -->
|
|
|
|
<section class="sidebar">
|
|
|
|
<!-- sidebar menu: : style can be found in sidebar.less -->
|
|
|
|
<ul class="sidebar-menu">
|
2016-06-02 02:39:36 -07:00
|
|
|
@can('admin')
|
2016-03-25 01:18:05 -07:00
|
|
|
<li {!! (\Request::route()->getName()=='home' ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('home') }}">
|
|
|
|
<i class="fa fa-dashboard"></i> <span>Dashboard</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('index', \App\Models\Asset::class)
|
2016-03-25 01:18:05 -07:00
|
|
|
<li class="treeview{{ (Request::is('hardware*') ? ' active' : '') }}">
|
|
|
|
<a href="#"><i class="fa fa-barcode"></i>
|
|
|
|
<span>{{ trans('general.assets') }}</span>
|
|
|
|
<i class="fa fa-angle-left pull-right"></i>
|
|
|
|
</a>
|
|
|
|
<ul class="treeview-menu">
|
|
|
|
<li>
|
2017-11-02 10:27:53 -07:00
|
|
|
<a href="{{ url('hardware') }}">
|
|
|
|
{{ trans('general.list_all') }}
|
|
|
|
</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2016-08-23 18:52:42 -07:00
|
|
|
|
2016-12-29 14:02:18 -08:00
|
|
|
<?php $status_navs = \App\Models\Statuslabel::where('show_in_nav', '=', 1)->get(); ?>
|
2016-08-23 18:52:42 -07:00
|
|
|
@if (count($status_navs) > 0)
|
|
|
|
<li class="divider"> </li>
|
|
|
|
@foreach ($status_navs as $status_nav)
|
2017-03-11 12:12:10 -08:00
|
|
|
<li><a href="{{ route('statuslabels.show', ['id' => $status_nav->id]) }}"}> {{ $status_nav->name }}</a></li>
|
2016-08-23 18:52:42 -07:00
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2016-07-29 14:17:59 -07:00
|
|
|
<li{!! (Request::query('status') == 'Deployed' ? ' class="active"' : '') !!}>
|
2017-11-02 10:27:53 -07:00
|
|
|
<a href="{{ url('hardware?status=Deployed') }}"><i class="fa fa-circle-o text-blue"></i>
|
|
|
|
{{ trans('general.all') }}
|
|
|
|
{{ trans('general.deployed') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-07-29 14:17:59 -07:00
|
|
|
<li{!! (Request::query('status') == 'RTD' ? ' class="active"' : '') !!}>
|
2016-12-15 16:41:36 -08:00
|
|
|
<a href="{{ url('hardware?status=RTD') }}">
|
2017-11-02 10:27:53 -07:00
|
|
|
<i class="fa fa-circle-o text-green"></i>
|
|
|
|
{{ trans('general.all') }}
|
|
|
|
{{ trans('general.ready_to_deploy') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li{!! (Request::query('status') == 'Pending' ? ' class="active"' : '') !!}><a href="{{ url('hardware?status=Pending') }}"><i class="fa fa-circle-o text-orange"></i>
|
|
|
|
{{ trans('general.all') }}
|
|
|
|
{{ trans('general.pending') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li{!! (Request::query('status') == 'Undeployable' ? ' class="active"' : '') !!} ><a href="{{ url('hardware?status=Undeployable') }}"><i class="fa fa-times text-red"></i>
|
|
|
|
{{ trans('general.all') }}
|
|
|
|
{{ trans('general.undeployable') }}
|
|
|
|
</a>
|
2016-03-25 01:18:05 -07:00
|
|
|
</li>
|
2017-11-02 10:27:53 -07:00
|
|
|
<li{!! (Request::query('status') == 'Archived' ? ' class="active"' : '') !!}><a href="{{ url('hardware?status=Archived') }}"><i class="fa fa-times text-red"></i>
|
|
|
|
{{ trans('general.all') }}
|
|
|
|
{{ trans('admin/hardware/general.archived') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li{!! (Request::query('status') == 'Requestable' ? ' class="active"' : '') !!}><a href="{{ url('hardware?status=Requestable') }}"><i class="fa fa-check text-blue"></i>
|
|
|
|
{{ trans('admin/hardware/general.requestable') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<li class="divider"> </li>
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('checkout', \App\Models\Asset::class)
|
2016-07-29 14:17:59 -07:00
|
|
|
<li{!! (Request::is('hardware/bulkcheckout') ? ' class="active>"' : '') !!}>
|
|
|
|
<a href="{{ route('hardware/bulkcheckout') }}">
|
2017-11-02 10:27:53 -07:00
|
|
|
{{ trans('general.bulk_checkout') }}
|
|
|
|
</a>
|
2016-07-29 14:17:59 -07:00
|
|
|
</li>
|
2017-11-02 03:12:12 -07:00
|
|
|
<li{!! (Request::is('hardware/requested') ? ' class="active>"' : '') !!}>
|
|
|
|
<a href="{{ route('assets.requested') }}">
|
|
|
|
{{ trans('general.requested') }}</a>
|
|
|
|
</li>
|
2016-12-01 00:00:48 -08:00
|
|
|
@endcan
|
2017-11-02 03:12:12 -07:00
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('create', \App\Models\Asset::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li{!! (Request::query('Deleted') ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ url('hardware?status=Deleted') }}">
|
|
|
|
{{ trans('general.deleted') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ route('maintenances.index') }}">
|
|
|
|
{{ trans('general.asset_maintenances') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('hardware/history') }}">
|
|
|
|
{{ trans('general.import-history') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2016-12-01 00:00:48 -08:00
|
|
|
@endcan
|
2017-08-29 16:00:22 -07:00
|
|
|
@can('audit', \App\Models\Asset::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('assets.bulkaudit') }}">
|
|
|
|
{{ trans('general.bulkaudit') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-08-29 16:00:22 -07:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
</ul>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('view', \App\Models\License::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li{!! (Request::is('licenses*') ? ' class="active"' : '') !!}>
|
2016-12-15 11:57:19 -08:00
|
|
|
<a href="{{ route('licenses.index') }}">
|
2016-04-19 19:42:16 -07:00
|
|
|
<i class="fa fa-floppy-o"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.licenses') }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('index', \App\Models\Accessory::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li{!! (Request::is('accessories*') ? ' class="active"' : '') !!}>
|
2016-12-15 04:27:17 -08:00
|
|
|
<a href="{{ route('accessories.index') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-keyboard-o"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.accessories') }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
2016-06-02 02:39:36 -07:00
|
|
|
</li>
|
|
|
|
@endcan
|
2018-01-17 06:27:23 -08:00
|
|
|
@can('view', \App\Models\Consumable::class)
|
|
|
|
<li{!! (Request::is('consumables*') ? ' class="active"' : '') !!}>
|
2016-12-15 16:41:36 -08:00
|
|
|
<a href="{{ url('consumables') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-tint"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.consumables') }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2018-01-17 06:27:23 -08:00
|
|
|
@can('view', \App\Models\Component::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li{!! (Request::is('components*') ? ' class="active"' : '') !!}>
|
2016-12-15 19:59:42 -08:00
|
|
|
<a href="{{ route('components.index') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-hdd-o"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.components') }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('view', \App\Models\User::class)
|
2016-12-15 06:11:03 -08:00
|
|
|
<li{!! (Request::is('users*') ? ' class="active"' : '') !!}>
|
2016-12-15 20:52:39 -08:00
|
|
|
<a href="{{ route('users.index') }}">
|
2016-03-25 01:18:05 -07:00
|
|
|
<i class="fa fa-users"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.people') }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2017-02-03 19:33:40 -08:00
|
|
|
@can('create', \App\Models\Asset::class)
|
Importer mapping - v1 (#3677)
* Move importer to an inline-template, allows for translations and easier passing of data from laravel to vue.
* Pull the modal out into a dedicated partial, move importer to views/importer.
* Add document of CSV->importer mappings. Reorganize some code.
Progress.
* Add header_row and first_row to imports table, and process upon uploading a file
* Use an expandable table row instead of a modal for import processing. This should allow for field mapping interaction easier.
* Fix import processing after moving method.
* Frontend importer mapping improvements.
Invert display so we show found columns and allow users to select an
importer field to map to. Also implement sample data based on first row
of csv.
* Update select2. Maintain selected items properly.
* Backend support for importing. Only works on the web importer currently. Definitely needs testing and polish.
* We no longer use vue-modal plugin.
* Add a column to track field mappings to the imports table.
* Cleanup/rename methods+refactor
* Save field mappings and import type when attempting an import, and repopulate these values when returning to the page.
* Update debugbar to fix a bug in the debugbar code.
* Fix asset tag detection.
Also rename findMatch to be a bit clearer as to what it does.
Remove logging to file of imports for http imports because
it eats an incredible amouint of memory.
This commit also moves imports out of the hardware namespace and into
their own webcontroller and route prefix, remove dead code from
AssetController as a result.
* Dynamically limit options for select2 based on import type selected, and group them by item type.
* Add user importer.
Still need to implement emailing of passwords to new users, and probably
test a bit more.
This also bumps the memory limit for web imports up as well, I need to
profile memory usage here before too long.
* Query the db to find user matches rather than search the array. Performance is much much better.
* Speed/memory improvements in importers.
Move to querying the db rather than maintaining an array for all
importers. Also only store the id of items when we import, rather than
the full model. It saves a decent amount of memory.
* Remove grouping of items in select2
With the values being set dynamically, the grouping is redundant. It
also caused a regression with automatically guessing/matching field
names. This is starting to get close.
* Remove debug line on every create.
* Switch migration to be text field instead of json field for compatibility with older mysql/mariadb
* Fix asset import regression matching email address.
* Rearrange travis order in attempt to fix null settings.
* Use auth::id instead of fetching it off the user. Fixes a null object reference during seeding.
2017-06-21 16:37:37 -07:00
|
|
|
<li{!! (Request::is('import/*') ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('imports.index') }}">
|
2017-02-03 19:33:40 -08:00
|
|
|
<i class="fa fa-cloud-download"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.import') }}</span>
|
2017-02-03 19:33:40 -08:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
|
|
|
|
2017-10-27 18:01:11 -07:00
|
|
|
@can('backend.interact')
|
2017-11-08 13:12:03 -08:00
|
|
|
<li class="treeview">
|
2017-02-22 22:21:17 -08:00
|
|
|
<a href="#">
|
|
|
|
<i class="fa fa-gear"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.settings') }}</span>
|
2017-02-22 22:21:17 -08:00
|
|
|
<i class="fa fa-angle-left pull-right"></i>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<ul class="treeview-menu">
|
2018-07-12 18:28:20 -07:00
|
|
|
@if(Gate::allows('view', App\Models\CustomField::class) || Gate::allows('view', App\Models\CustomFieldset::class))
|
2018-03-07 13:37:37 -08:00
|
|
|
<li {!! (Request::is('fields*') ? ' class="active"' : '') !!}>
|
2017-03-03 17:30:12 -08:00
|
|
|
<a href="{{ route('fields.index') }}">
|
|
|
|
{{ trans('admin/custom_fields/general.custom_fields') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2018-07-12 18:28:20 -07:00
|
|
|
@endif
|
2017-03-03 17:30:12 -08:00
|
|
|
|
|
|
|
@can('view', \App\Models\Statuslabel::class)
|
|
|
|
<li {!! (Request::is('statuslabels*') ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('statuslabels.index') }}">
|
|
|
|
{{ trans('general.status_labels') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
@endcan
|
|
|
|
|
2017-08-25 10:03:05 -07:00
|
|
|
@can('view', \App\Models\AssetModel::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('models.index') }}" {{ (Request::is('/assetmodels') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.asset_models') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-02-22 22:21:17 -08:00
|
|
|
@endcan
|
|
|
|
|
2017-05-15 20:55:53 -07:00
|
|
|
|
2017-02-22 22:21:17 -08:00
|
|
|
@can('view', \App\Models\Category::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('categories.index') }}" {{ (Request::is('/categories') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.categories') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-02-22 22:21:17 -08:00
|
|
|
@endcan
|
|
|
|
|
2017-08-25 10:03:05 -07:00
|
|
|
@can('view', \App\Models\Manufacturer::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('manufacturers.index') }}" {{ (Request::is('/manufacturers') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.manufacturers') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-02-22 22:21:17 -08:00
|
|
|
@endcan
|
|
|
|
|
2017-08-25 10:03:05 -07:00
|
|
|
@can('view', \App\Models\Supplier::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('suppliers.index') }}" {{ (Request::is('/suppliers') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.suppliers') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-02-22 22:21:17 -08:00
|
|
|
@endcan
|
|
|
|
|
2017-05-22 21:31:58 -07:00
|
|
|
@can('view', \App\Models\Department::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('departments.index') }}" {{ (Request::is('/departments') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.departments') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-05-22 21:31:58 -07:00
|
|
|
@endcan
|
|
|
|
|
2017-02-22 22:21:17 -08:00
|
|
|
@can('view', \App\Models\Location::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('locations.index') }}" {{ (Request::is('/locations') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.locations') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-02-22 22:21:17 -08:00
|
|
|
@endcan
|
|
|
|
|
2017-08-25 10:03:05 -07:00
|
|
|
@can('view', \App\Models\Company::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('companies.index') }}" {{ (Request::is('/companies') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.companies') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-08-25 10:03:05 -07:00
|
|
|
@endcan
|
|
|
|
|
|
|
|
@can('view', \App\Models\Depreciation::class)
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('depreciations.index') }}" {{ (Request::is('/depreciations') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.depreciation') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-08-25 10:03:05 -07:00
|
|
|
@endcan
|
|
|
|
|
2017-02-22 22:21:17 -08:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
@endcan
|
|
|
|
|
2017-03-03 17:30:12 -08:00
|
|
|
@can('reports.view')
|
|
|
|
<li class="treeview{{ (Request::is('reports*') ? ' active' : '') }}">
|
2018-02-20 14:44:29 -08:00
|
|
|
<a href="#" class="dropdown-toggle">
|
2017-03-03 17:30:12 -08:00
|
|
|
<i class="fa fa-bar-chart"></i>
|
2017-11-02 10:27:53 -07:00
|
|
|
<span>{{ trans('general.reports') }}</span>
|
2017-03-03 17:30:12 -08:00
|
|
|
<i class="fa fa-angle-left pull-right"></i>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<ul class="treeview-menu">
|
2017-11-02 10:27:53 -07:00
|
|
|
<li>
|
|
|
|
<a href="{{ route('reports.activity') }}" {{ (Request::is('reports/activity') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.activity_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-03-03 17:30:12 -08:00
|
|
|
|
2017-11-02 10:27:53 -07:00
|
|
|
<li><a href="{{ route('reports.audit') }}" {{ (Request::is('reports.audit') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.audit_report') }}</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('reports/depreciation') }}" {{ (Request::is('reports/depreciation') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.depreciation_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('reports/licenses') }}" {{ (Request::is('reports/licenses') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.license_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('reports/asset_maintenances') }}" {{ (Request::is('reports/asset_maintenances') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.asset_maintenance_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('reports/unaccepted_assets') }}" {{ (Request::is('reports/unaccepted_assets') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.unaccepted_asset_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('reports/accessories') }}" {{ (Request::is('reports/accessories') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.accessory_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url('reports/custom') }}" {{ (Request::is('reports/custom') ? ' class="active"' : '') }}>
|
|
|
|
{{ trans('general.custom_report') }}
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-03-03 17:30:12 -08:00
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
@endcan
|
2017-02-22 22:21:17 -08:00
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('viewRequestable', \App\Models\Asset::class)
|
2016-03-25 01:18:05 -07:00
|
|
|
<li{!! (Request::is('account/requestable-assets') ? ' class="active"' : '') !!}>
|
|
|
|
<a href="{{ route('requestable-assets') }}">
|
|
|
|
<i class="fa fa-laptop"></i>
|
2016-06-02 02:39:36 -07:00
|
|
|
<span>{{ trans('admin/hardware/general.requestable') }}</span>
|
2016-03-25 01:18:05 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2016-06-02 02:39:36 -07:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
<!-- /.sidebar -->
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
|
|
|
|
|
|
<div class="content-wrapper">
|
|
|
|
|
2016-11-29 00:08:20 -08:00
|
|
|
@if ($debug_in_production)
|
|
|
|
<div class="row" style="margin-bottom: 0px; background-color: red; color: white; font-size: 15px;">
|
2016-12-22 21:21:10 -08:00
|
|
|
<div class="col-md-12" style="margin-bottom: 0px; background-color: #b50408 ; color: white; padding: 10px 20px 10px 30px; font-size: 16px;">
|
2016-11-29 00:08:20 -08:00
|
|
|
<i class="fa fa-warning fa-3x pull-left"></i> <strong>{{ strtoupper(trans('general.debug_warning')) }}:</strong>
|
|
|
|
{!! trans('general.debug_warning_text') !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header" style="padding-bottom: 30px;">
|
|
|
|
<h1 class="pull-left">
|
|
|
|
@yield('title')
|
2016-07-22 00:28:22 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
</h1>
|
|
|
|
<div class="pull-right">
|
|
|
|
@yield('header_right')
|
|
|
|
</div>
|
2016-07-22 00:28:22 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<section class="content">
|
|
|
|
<!-- Notifications -->
|
|
|
|
<div class="row">
|
2016-07-22 00:28:22 -07:00
|
|
|
@if (config('app.lock_passwords'))
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="callout callout-info">
|
|
|
|
{{ trans('general.some_features_disabled') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
@include('notifications')
|
|
|
|
</div>
|
|
|
|
|
2016-06-02 02:39:36 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
<!-- Content -->
|
2017-01-18 05:02:00 -08:00
|
|
|
<div id="{!! (Request::is('*api*') ? 'app' : 'webui') !!}">
|
2016-03-25 01:18:05 -07:00
|
|
|
@yield('content')
|
2017-01-11 03:55:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</div><!-- /.content-wrapper -->
|
|
|
|
|
2017-01-26 06:20:53 -08:00
|
|
|
<footer class="main-footer hidden-print">
|
2018-01-24 07:02:30 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="pull-right hidden-xs">
|
2018-06-21 07:12:16 -07:00
|
|
|
@if ($snipeSettings->version_footer!='off')
|
|
|
|
@if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
|
|
|
|
<b>Version</b> {{ config('version.app_version') }} - build {{ config('version.build_version') }} ({{ config('version.branch') }})
|
|
|
|
@endif
|
|
|
|
@endif
|
2018-01-24 07:02:30 -08:00
|
|
|
|
|
|
|
@if ($snipeSettings->support_footer!='off')
|
|
|
|
@if (($snipeSettings->support_footer=='on') || (($snipeSettings->support_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
|
|
|
|
<a target="_blank" class="btn btn-default btn-xs" href="https://snipe-it.readme.io/docs/overview" rel="noopener">User's Manual</a>
|
|
|
|
<a target="_blank" class="btn btn-default btn-xs" href="https://snipeitapp.com/support/" rel="noopener">Report a Bug</a>
|
|
|
|
@endif
|
|
|
|
@endif
|
|
|
|
|
2018-05-08 00:50:13 -07:00
|
|
|
@if ($snipeSettings->privacy_policy_link!='')
|
|
|
|
<a target="_blank" class="btn btn-default btn-xs" rel="noopener" href="{{ $snipeSettings->privacy_policy_link }}" target="_new">{{ trans('admin/settings/general.privacy_policy') }}</a>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2018-01-24 07:02:30 -08:00
|
|
|
@if ($snipeSettings->footer_text!='')
|
|
|
|
<div class="pull-right">
|
|
|
|
{!! Parsedown::instance()->text(e($snipeSettings->footer_text)) !!}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2018-05-08 00:50:13 -07:00
|
|
|
|
2018-01-24 07:02:30 -08:00
|
|
|
<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" style="color: #a94442; font-size: 10px"></i> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
|
2016-03-25 01:18:05 -07:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div><!-- ./wrapper -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- end main container -->
|
|
|
|
|
|
|
|
<div class="modal modal-danger fade" id="dataConfirmModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title" id="myModalLabel"></h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body"></div>
|
|
|
|
<div class="modal-footer">
|
2016-12-19 10:42:33 -08:00
|
|
|
<form method="post" id="deleteForm" role="form">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
{{ method_field('DELETE') }}
|
2017-02-15 23:04:49 -08:00
|
|
|
|
|
|
|
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">{{ trans('general.cancel') }}</button>
|
|
|
|
<button type="submit" class="btn btn-outline" id="dataConfirmOK">{{ trans('general.yes') }}</button>
|
2016-12-19 10:42:33 -08:00
|
|
|
</form>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2018-09-28 09:02:15 -07:00
|
|
|
<script src="{{ url(mix('js/app.js')) }}" nonce="{{ csrf_token() }}"></script>
|
|
|
|
<script src="{{ url(mix('js/vendor.js')) }}" nonce="{{ csrf_token() }}"></script>
|
2018-08-28 13:10:27 -07:00
|
|
|
@stack('js')
|
2017-07-08 13:21:13 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
@section('moar_scripts')
|
|
|
|
@show
|
2017-01-11 05:51:13 -08:00
|
|
|
|
2017-09-28 19:45:15 -07:00
|
|
|
<script nonce="{{ csrf_token() }}">
|
2018-09-07 05:09:24 -07:00
|
|
|
|
|
|
|
|
2017-07-08 13:21:13 -07:00
|
|
|
$(function () {
|
|
|
|
$('[data-toggle="tooltip"]').tooltip();
|
2018-09-07 05:09:24 -07:00
|
|
|
$('[data-toggle="popover"]').popover();
|
2017-11-06 17:17:48 -08:00
|
|
|
$('.select2 span').addClass('needsclick');
|
2017-10-25 20:10:41 -07:00
|
|
|
|
2017-11-04 00:15:23 -07:00
|
|
|
// This javascript handles saving the state of the menu (expanded or not)
|
2017-10-25 20:10:41 -07:00
|
|
|
$('body').bind('expanded.pushMenu', function() {
|
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: "{{ route('account.menuprefs', ['state'=>'open']) }}",
|
|
|
|
_token: "{{ csrf_token() }}"
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
$('body').bind('collapsed.pushMenu', function() {
|
|
|
|
$.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: "{{ route('account.menuprefs', ['state'=>'close']) }}",
|
|
|
|
_token: "{{ csrf_token() }}"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-11-04 00:15:23 -07:00
|
|
|
// Initiate the ekko lightbox
|
2017-09-29 14:26:00 -07:00
|
|
|
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
$(this).ekkoLightbox();
|
|
|
|
});
|
2017-10-25 20:10:41 -07:00
|
|
|
|
2017-11-06 17:17:48 -08:00
|
|
|
|
|
|
|
|
2017-07-08 13:21:13 -07:00
|
|
|
</script>
|
|
|
|
|
2016-05-24 01:10:05 -07:00
|
|
|
@if ((Session::get('topsearch')=='true') || (Request::is('/')))
|
2017-09-28 19:45:15 -07:00
|
|
|
<script nonce="{{ csrf_token() }}">
|
2016-05-24 01:10:05 -07:00
|
|
|
$("#tagSearch").focus();
|
2016-05-20 17:02:28 -07:00
|
|
|
</script>
|
2017-07-08 13:21:13 -07:00
|
|
|
@endif
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-02-16 21:17:41 -08:00
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
</body>
|
|
|
|
</html>
|