forked from botswana-harvard/edc-pharmacy
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove refs to bootstrap3 template folder
- Loading branch information
Showing
6 changed files
with
3 additions
and
7 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
from django.conf import settings | ||
from django.views.generic.base import TemplateView | ||
from edc_dashboard.utils import get_bootstrap_version | ||
from edc_dashboard.view_mixins import EdcViewMixin | ||
from edc_navbar import NavbarViewMixin | ||
|
||
|
||
class HomeView(EdcViewMixin, NavbarViewMixin, TemplateView): | ||
template_name = f"edc_pharmacy/bootstrap{get_bootstrap_version()}/home.html" | ||
template_name = "edc_pharmacy/home.html" | ||
navbar_name = settings.APP_NAME | ||
navbar_selected_item = "pharmacy" |