-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(admin): eligibility - first pass @ layout
- Loading branch information
1 parent
904680e
commit 1fb5427
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{% extends "admin/base.html" %} | ||
{% load i18n static %} | ||
|
||
{% block extrastyle %} | ||
<style> | ||
html[data-theme="light"], :root { | ||
--primary: #045b86; | ||
--secondary: #045b86; | ||
--link-fg: #ffffff; | ||
--body-quiet-color: #000000; | ||
} | ||
html[data-theme="dark"], :root { | ||
--primary: #045b86; | ||
--secondary: #045b86; | ||
--link-fg: #ffffff; | ||
--body-quiet-color: #000000; | ||
} | ||
</style> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet" type="text/css"> | ||
<link href="https://california.azureedge.net/cdt/statetemplate/6.0.7/css/cagov.core.min.css" rel="stylesheet"> | ||
<link href="{% static "css/styles.css" %}" rel="stylesheet"> | ||
<link href="{% static "img/favicon.ico" %}" rel="icon" type="image/x-icon" /> | ||
{% endblock extrastyle %} | ||
|
||
{% block title %} | ||
Agency Dashboard | ||
{% endblock title %} | ||
|
||
{% block branding %} | ||
<div id="header-container" class="navbar navbar-expand-sm navbar-dark bg-primary justify-content-between"> | ||
<div class="container"> | ||
<span class="navbar-brand p-0"> | ||
<img class="sm d-lg-none" src="{% static "img/logo-sm.svg" %}" width="90" height="51.3" alt="{% translate "California Integrated Travel Project: Benefits logo (small)" context "image alt text" %}" /> | ||
<img class="lg d-none d-lg-block" src="{% static "img/logo-lg.svg" %}" width="220" height="50" alt="{% translate "California Integrated Travel Project: Benefits logo (large)" context "image alt text" %}" /> | ||
</span> | ||
</div> | ||
<h1 class="p-0">Administrator</h1> | ||
</div> | ||
{% endblock branding %} | ||
|
||
{% block coltype %} | ||
w-100 row justify-content-center | ||
{% endblock coltype %} | ||
|
||
{% block bodyclass %} | ||
{{ block.super }} dashboard | ||
{% endblock bodyclass %} | ||
|
||
{% block nav-breadcrumbs %} | ||
{% endblock nav-breadcrumbs %} | ||
|
||
{% block nav-sidebar %} | ||
{% endblock nav-sidebar %} | ||
|
||
{% block content_title %} | ||
{% endblock content_title %} | ||
|
||
{% block content %} | ||
<div class="col-lg-6"> | ||
<h1 class="pt-0 pb-3 text-left">{{ agency.long_name }}</h1> | ||
<div class="border border-3 p-3"> | ||
<h2 class="pt-0 pb-2 text-left">In-person enrollment</h2> | ||
</div> | ||
<div class="border border-3 border-top-0 p-3"> | ||
<p class="pt-0 pb-2 text-left">Choose an eligibility type to qualify this rider:</p> | ||
<div class="row pt-4"> | ||
<div class="col-6"> | ||
<a href="#" class="btn btn-lg btn-outline-primary d-block">Cancel</a> | ||
</div> | ||
<div class="col-6"> | ||
<a href="#" class="btn btn-lg btn-primary d-block">Continue</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{% endblock content %} | ||
|
||
{% block sidebar %} | ||
{% endblock sidebar %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters