Skip to content

Commit

Permalink
updating bootstrap; removing host views/templates; now available in d…
Browse files Browse the repository at this point in the history
…jango-hostutils (#106)
  • Loading branch information
davidslusser committed Jun 12, 2023
1 parent bd98280 commit 3e258b7
Show file tree
Hide file tree
Showing 206 changed files with 11,219 additions and 10,692 deletions.
2 changes: 1 addition & 1 deletion handyhelpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

__title__ = 'django-handyhelpers'
__version__ = '0.3.4'
__version__ = '0.3.5'
__author__ = 'David Slusser'
__email__ = 'dbslusser@gmail.com'
__license__ = 'GPL-3.0'
Expand Down
15 changes: 0 additions & 15 deletions handyhelpers/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,3 @@ class TimestampFilter(forms.Form):
required=False, label='Updated After')
updated_at__lte = forms.DateField(widget=forms.DateInput(attrs={'class': 'form-control', 'type': 'date'}),
required=False, label='Updated Before')


class HostProcessFilterForm(forms.Form):
""" Form Class for filtering host processes """
status_choices = [(i, i) for i in ['running', 'idle', 'sleeping', 'stopped', 'zombie', 'dead']]
status = forms.MultipleChoiceField(choices=status_choices,
widget=forms.SelectMultiple(attrs={'class': 'form-control'}),
required=False,
label='Status')
created_at__gte = forms.DateTimeField(widget=forms.DateInput(attrs={'class': 'form-control',
'type': 'datetime-local'}),
required=False, label='Created After')
created_at__lte = forms.DateTimeField(widget=forms.DateInput(attrs={'class': 'form-control',
'type': 'datetime-local'}),
required=False, label='Created Before')
16 changes: 8 additions & 8 deletions handyhelpers/static/handyhelpers/css/handyhelper-cards.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
margin: .25rem .5rem .25rem .5rem;
font-size: 2.75rem;
/*font-weight: bold;*/
color: var(--primary);
color: var(--bs-primary);
}

.zoom-index-card .title {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary);
color: var(--bs-primary);
margin-bottom: 1rem;
}

.zoom-index-card .description {
color: var(--secondary);
color: var(--bs-secondary);
}


Expand All @@ -46,12 +46,12 @@
margin: .25rem .5rem .25rem .5rem;
padding: .25rem;
font-size: 2.5rem;
color: var(--primary);
color: var(--bs-primary);
}

.zoom-admin-card .title {
display: table-cell;
color: var(--secondary);
color: var(--bs-secondary);
height: 4rem;
width: 9.5rem;
vertical-align: middle;
Expand All @@ -78,12 +78,12 @@
padding: .25rem;
font-size: 3.75rem;
font-weight: bold;
color: var(--primary);
color: var(--bs-primary);
}

.zoom-summary-card .description {
display: table-cell;
color: var(--secondary);
color: var(--bs-secondary);
font-size: 1.25rem;
font-weight: bold;
height: 3rem;
Expand All @@ -108,5 +108,5 @@
margin: .25rem .5rem .25rem .5rem;
padding: .25rem;
font-size: 2rem;
color: var(--primary);
color: var(--bs-primary);
}
2 changes: 1 addition & 1 deletion handyhelpers/static/node_modules/.yarn-integrity

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions handyhelpers/static/node_modules/bootstrap/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions handyhelpers/static/node_modules/bootstrap/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3e258b7

Please sign in to comment.