Sha256: e3f385f0fe9ee6c717d725508f5d281f278c3ed8c61757a57c8a7fa87b4b205f
Contents?: true
Size: 1.73 KB
Versions: 6
Compression:
Stored size: 1.73 KB
Contents
<!DOCTYPE html> <html class="no-js" lang="en"> <head> <title>OpsAsk (<%= settings.config[:app_version] %>)</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="/css/foundation.css" /> <link rel="stylesheet" href="/css/style.css" /> <link rel="shortcut icon" href="favicon.ico" /> <script src="/js/vendor/modernizr.js"></script> </head> <body> <div id="content-wrap" class="row <%= 'ops' if ops? %>"> <div id="content" class="small-12 columns"> <%= partial :flash, locals: { type: :notice, style: :success } %> <%= partial :flash, locals: { type: :error, style: :alert } %> <% if logged_in? %> <%= yield %> <% else %> <section id="ops-ask" class="small-4 small-offset-4 columns"> <h2> </h2> <h3 class="need-to-login-to-jira">Sorry, auth required</h3> <p class="need-to-login-to-jira">If you'd like to view the queues and submit new issues please <a href="/login">authorize with JIRA</a> first.</p> </section> <% end %> </div> </div> <div id="indicators"> <% unless untracked_jiras.empty? %> <div id="untracked-indicator"> <span class="alert label radius"><a href="/untracked"><%= untracked_jiras.length %> untracked</a></span> </div> <% end %> <% unless stragglers.empty? %> <div id="straggling-indicator"> <span class="alert label radius"><a href="/stragglers"><%= stragglers.length %> stragglers</a></span> </div> <% end %> </div> <script src="/js/vendor/jquery.js"></script> <script src="/js/opsask.js"></script> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
opsask-2.0.5 | views/layout.erb |
opsask-2.0.4 | views/layout.erb |
opsask-2.0.3 | views/layout.erb |
opsask-2.0.2 | views/layout.erb |
opsask-2.0.1 | views/layout.erb |
opsask-2.0.0 | views/layout.erb |