mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
83 lines
2.2 KiB
Plaintext
83 lines
2.2 KiB
Plaintext
doctype 5
|
|
html(lang="en", ng-app="biomed", ng-controller="PageCtrl")
|
|
head
|
|
title Atlantic Biomedical
|
|
!{css}
|
|
base(href='/')
|
|
body
|
|
error-panel
|
|
.navbar
|
|
.navbar-inner
|
|
a.brand(href='/', target='_self') Atlantic Biomedical
|
|
progress-panel
|
|
ul.nav.pull-right
|
|
li
|
|
a(href='https://docs.google.com/a/atlanticbiomedical.com/forms/d/1i7CyNR2lcrz7bOL7u9ssKiMB2iBmXqOdvVKC0GRzRtY/viewform', target='_blank')
|
|
i.icon-shopping-cart
|
|
| Sales
|
|
li
|
|
a(href='https://docs.google.com/a/atlanticbiomedical.com/forms/d/16tPHoTkEQB7fqXxBDZk_7s-WLz6a3eXVBWiUyA0fntM/viewform', target='_blank')
|
|
i.icon-thumbs-down
|
|
| Incident
|
|
li
|
|
a(href='http://jira.devwr.com:9090/servicedesk/customer/portal/2', target='_blank')
|
|
i.icon-fire
|
|
| Tickets
|
|
li
|
|
a(ng-click="openDialog()")
|
|
i.icon-envelope
|
|
| Messages
|
|
li
|
|
a(href='/logout', target='_self')
|
|
i.icon-share-alt
|
|
| Logout
|
|
li(ng-show='account.name')
|
|
a(href='#')
|
|
i.icon-user
|
|
| {{account.name.first}} {{account.name.last}}
|
|
li.photo(ng-show='account.picture', ns-show='account.picture')
|
|
img(ng-src='{{account.picture}}?sz=50')
|
|
.navbar.navbar-secondary(bio-navbar)
|
|
.navbar-inner
|
|
ul.nav
|
|
li(data-match-route='/schedule.*')
|
|
a(href='/schedule')
|
|
| Schedule
|
|
|
|
li
|
|
a(href='/schedule/pms')
|
|
| PM
|
|
|
|
li(data-match-route='/client.*')
|
|
a(href='/clients')
|
|
| Clients
|
|
|
|
li(data-match-route='/workorder.*')
|
|
a(href='/workorders')
|
|
| Workorders
|
|
|
|
li(data-match-route='/accounting.*')
|
|
a(href='/accounting')
|
|
| Accounting
|
|
|
|
li(data-match-route='/deviceTypes.*')
|
|
a(href='/deviceTypes')
|
|
| Global Devices
|
|
|
|
li(data-match-route='/checkLists.*')
|
|
a(href='/checkLists')
|
|
| Check Lists
|
|
|
|
li(data-match-route='/posts.*', ng-show="accountHasPermission('system.admin')")
|
|
a(href='/posts')
|
|
| Posts
|
|
|
|
li(data-match-route='/admin.*', ng-show="accountHasPermission('system.admin')")
|
|
a(href='/admin')
|
|
| Admin
|
|
li.day-of-year
|
|
{{dayOfYear}}
|
|
.container-fluid
|
|
ng-view
|
|
!{js}
|