Files
biomedjs/app/views/index.jade

83 lines
2.2 KiB
Plaintext
Raw Permalink Normal View History

2013-05-06 03:38:29 -04:00
doctype 5
2015-04-20 05:31:12 -04:00
html(lang="en", ng-app="biomed", ng-controller="PageCtrl")
2013-05-06 03:38:29 -04:00
head
title Atlantic Biomedical
!{css}
2015-04-20 05:31:12 -04:00
base(href='/')
2013-05-06 03:38:29 -04:00
body
error-panel
.navbar
.navbar-inner
a.brand(href='/', target='_self') Atlantic Biomedical
progress-panel
2014-07-25 03:00:29 -04:00
ul.nav.pull-right
2013-07-19 02:38:07 -04:00
li
a(href='https://docs.google.com/a/atlanticbiomedical.com/forms/d/1i7CyNR2lcrz7bOL7u9ssKiMB2iBmXqOdvVKC0GRzRtY/viewform', target='_blank')
i.icon-shopping-cart
| Sales
2013-05-20 11:27:36 -04:00
li
a(href='https://docs.google.com/a/atlanticbiomedical.com/forms/d/16tPHoTkEQB7fqXxBDZk_7s-WLz6a3eXVBWiUyA0fntM/viewform', target='_blank')
i.icon-thumbs-down
| Incident
2013-05-06 03:38:29 -04:00
li
2014-12-15 02:36:41 -05:00
a(href='http://jira.devwr.com:9090/servicedesk/customer/portal/2', target='_blank')
2013-05-06 03:38:29 -04:00
i.icon-fire
| Tickets
li
2014-08-25 06:14:05 -04:00
a(ng-click="openDialog()")
2013-05-06 03:38:29 -04:00
i.icon-envelope
2014-08-25 06:14:05 -04:00
| Messages
2013-05-06 03:38:29 -04:00
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
2015-04-06 06:36:17 -04:00
li
a(href='/schedule/pms')
| PM
2013-05-06 03:38:29 -04:00
li(data-match-route='/client.*')
a(href='/clients')
| Clients
li(data-match-route='/workorder.*')
a(href='/workorders')
| Workorders
2014-07-25 03:00:29 -04:00
2015-04-06 06:36:17 -04:00
li(data-match-route='/accounting.*')
a(href='/accounting')
| Accounting
2015-08-03 05:00:22 -04:00
li(data-match-route='/deviceTypes.*')
a(href='/deviceTypes')
2015-08-10 01:42:48 -04:00
| Global Devices
2015-07-19 21:31:10 -04:00
2015-08-05 06:03:02 -07:00
li(data-match-route='/checkLists.*')
a(href='/checkLists')
| Check Lists
2014-12-15 02:36:41 -05:00
li(data-match-route='/posts.*', ng-show="accountHasPermission('system.admin')")
a(href='/posts')
| Posts
2014-07-25 03:00:29 -04:00
li(data-match-route='/admin.*', ng-show="accountHasPermission('system.admin')")
a(href='/admin')
| Admin
2015-04-06 03:28:20 -04:00
li.day-of-year
{{dayOfYear}}
2013-05-06 03:38:29 -04:00
.container-fluid
ng-view
2013-05-20 11:27:36 -04:00
!{js}