Merge branch 'quality'
This commit is contained in:
commit
04aa942f93
@ -1,10 +1,3 @@
|
||||
Navbar:
|
||||
- { title: Cram-A-Lot, url: 'https://www.cram-a-lot.com/' }
|
||||
- { title: Office365, url: 'https://myapps.microsoft.com/' }
|
||||
- { title: Directory, url: services/directory }
|
||||
- { title: 'Software Basics', url: '' }
|
||||
- { title: 'IT Helpdesk', url: 'https://cramalot.on.spiceworks.com/portal' }
|
||||
- { title: 'Safety Training', url: 'training/safety'}
|
||||
Cards:
|
||||
# To add a new card:
|
||||
# Create a new object with single indent (2 spaces). The Text written here will be the title of the card.
|
||||
@ -18,29 +11,26 @@ Cards:
|
||||
# - { title: 'Card Title', url: 'URL goes here'}
|
||||
|
||||
Services:
|
||||
- { title: 'Partner Map', url: 'services/blipstar/blipstar_partner_filter/viewer/blipstardesktop.php'}
|
||||
- { title: 'Partner Map', url: 'http://site:81/blipstar_partner_filter/viewer/blipstardesktop.php'}
|
||||
- { title: 'Zip Code Lookup', url: 'http://zip4.usps.com/zip4/welcome.jsp'}
|
||||
- { title: 'Request Service', url: 'http://site:81/CustSupport.doc'}
|
||||
- { title: 'Request Service', url: "documents/CustSupport.doc"}
|
||||
- { title: 'Tax Rates', url: 'http://www.taxrates.com/calculator/'}
|
||||
Ticket Archives:
|
||||
- {title: 'Request Portal', url: 'archive/tickets/default/1'}
|
||||
- {title: 'Sales Portal', url: 'archive/tickets/sales/1'}
|
||||
Company Links:
|
||||
- { title: 'Anonymous Complaint', url: 'services/anonymous.php'}
|
||||
- { title: 'Maintenance Work Order Form', url: 'http://site:81/maintenanceworkorder.pdf'}
|
||||
Freight:
|
||||
Freight By SRO:
|
||||
- { title: 'Track UPS by SRO#', url: 'http://site:81/UPS_Tracking.html'}
|
||||
- { title: 'Track FedEx by SRO#', url: 'http://site:81/FedExTracking.html'}
|
||||
Freight:
|
||||
- { title: 'UPS Tracking', url: 'http://www.ups.com/tracking/tracking.html'}
|
||||
- { title: 'FedEx', url: 'http://www.fedex.com/us/'}
|
||||
- { title: 'Central Freight', url: 'http://www.centralfreight.com/website/'}
|
||||
- { title: 'DHL', url: 'http://www.dhl-usa.com//home/home.asp'}
|
||||
- { title: 'SAIA Motors', url: 'http://www.saia.com/v2/default.aspx'}
|
||||
- { title: 'Yellow & Roadway Freight', url: 'http://www.yrc.com/'}
|
||||
- { title: 'USF Dugan', url: 'http://yrcregional.com/'}
|
||||
- { title: 'Central Transport', url: 'http://www.centraltransportint.com/'}
|
||||
- { title: 'DHL', url: 'http://www.dhl-usa.com//home/home.asp'}
|
||||
- { title: 'Airways Freight', url: 'http://www.airwaysfreight.com/'}
|
||||
- { title: 'AAA Cooper', url: 'http://www.aaacooper.com/'}
|
||||
- { title: 'Conway Freight', url: 'http://www.con-way.com/en/freight/'}
|
||||
- { title: 'XPO', url: 'https://ext-web.ltl-xpo.com/landing'} #Formerly Con-way Freight
|
||||
- { title: 'Averitt Express', url: 'http://www.averittexpress.com/'}
|
||||
- { title: 'Pilot Freight', url: 'http://www.pilotdelivers.com/pages/tracking/'}
|
||||
- { title: 'Maersk Delivers', url: 'https://delivers.maersk.com/technology/'} #Formerly Pilot Delivers
|
||||
BIN
public/documents/CustSupport.doc
Normal file
BIN
public/documents/CustSupport.doc
Normal file
Binary file not shown.
BIN
public/documents/JV Software Basics.docx
Normal file
BIN
public/documents/JV Software Basics.docx
Normal file
Binary file not shown.
BIN
public/documents/maintenanceworkorder.pdf
Normal file
BIN
public/documents/maintenanceworkorder.pdf
Normal file
Binary file not shown.
@ -18,7 +18,7 @@ use Symfony\Component\Mime\Address;
|
||||
|
||||
class ComplaintController extends AbstractController
|
||||
{
|
||||
#[Route('/complaint')]
|
||||
#[Route('/complaint', name: 'complaint')]
|
||||
public function Index(Request $request, TransportTransportInterface $mailer,LoggerInterface $log) : Response
|
||||
{
|
||||
$form = $this->createForm(AnonymousComplaintType::class);
|
||||
@ -28,7 +28,7 @@ class ComplaintController extends AbstractController
|
||||
$message = $form->get('Message')->getData();
|
||||
$email = (new Email())
|
||||
->from(new Address('noreply@jv.com', 'Anonymous'))
|
||||
->to('ajensen@jv.com') //Send to me for testing purposes. TODO: change to chris@jv.com
|
||||
->to('ajensen@jv.com') //Send to me for testing purposes. TODO: change to chris@jv.com to be read from a config or env
|
||||
->subject('Anonymous Contact Form')
|
||||
->text($message);
|
||||
$email->getHeaders()->addTextHeader('X-Auto-Response-Suppress', 'OOF, DR, RN, NRN, AutoReply'); //Tell autoresponders to not reply
|
||||
|
||||
@ -30,7 +30,7 @@
|
||||
<div class="card-text">
|
||||
<ul class="list-group list-group-flush">
|
||||
{% for link in links %}
|
||||
<a class="list-group-item list-group-item-action list-item" href="/Training/Safety/Topics/{{link.url}}">{{link.title}}</a>
|
||||
<a class="list-group-item list-group-item-action list-item {{ (link.disabled|default(false))? 'disabled' : ''}}" href="/Training/Safety/Topics/{{link.url}}">{{link.title}}</a>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@ -12,12 +12,12 @@
|
||||
</a>
|
||||
</h3>
|
||||
<h3 class="navitem">
|
||||
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="">
|
||||
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="http://site:81/directory/home.php">
|
||||
Directory
|
||||
</a>
|
||||
</h3>
|
||||
<h3 class="navitem">
|
||||
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="">
|
||||
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ asset('documents/JV Software Basics.docx') }}">
|
||||
Software Basics
|
||||
</a>
|
||||
</h3>
|
||||
@ -30,6 +30,11 @@
|
||||
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('safetyHome')}}">
|
||||
Safety Training
|
||||
</a>
|
||||
</h3>
|
||||
<h3 class="navitem">
|
||||
<a class=" list-group-item list-group-item-action text-decoration-none h-100 text-white border-0" href="{{ path('complaint')}}">
|
||||
Anonymous Complaint
|
||||
</a>
|
||||
</h3>
|
||||
</ul>
|
||||
</div>
|
||||
@ -42,7 +42,7 @@
|
||||
<div class="card-text">
|
||||
<ul class="list-group list-group-flush">
|
||||
{% for link in links %}
|
||||
<a class="list-group-item list-group-item-action list-item" href="{{link.url}}">{{link.title}}</a>
|
||||
<a class="list-group-item list-group-item-action list-item {{ (link.disabled|default(false))? 'disabled' : ''}}" href="{{link.url}}">{{link.title}}</a>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user