Skip to content

Instantly share code, notes, and snippets.

View mmtechslv's full-sized avatar
Coding

Farid MUSA mmtechslv

Coding
View GitHub Profile
@mmtechslv
mmtechslv / Markdium-python.py
Created April 7, 2021 15:48
Markdium-Introduction
from django_filters import FilterSet
from django_filters.filters import RangeFilter
from .models import People
from .forms import PeopleFilterFormHelper
from .widgets import CustomRangeWidget
class AllRangeFilter(RangeFilter):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
values = [p.age for p in People.objects.all()]
@mmtechslv
mmtechslv / Markdium-python.py
Created April 7, 2021 15:48
Markdium-Introduction
class People(models.Model):
name = models.CharField(null=True,blank=True,max_length=50)
surname = models.CharField(null=True,blank=True,max_length=50)
age = models.IntegerField()
@mmtechslv
mmtechslv / Markdium-HTML.html
Created April 7, 2021 15:48
Markdium-Introduction
<form method="get">
{{ people_filter.form.as_p }}
<input type="submit" />
</form>
<table border='1' style="width:100%; text-align:center">
<thead>
<tr>
<th> Name </th>
<th> Surname </th>
@mmtechslv
mmtechslv / Markdium-python.py
Created April 7, 2021 15:48
Markdium-Introduction
...
STATICFILES_DIRS = [ BASE_DIR / 'static']
...
@mmtechslv
mmtechslv / Markdium-HTML.html
Created April 7, 2021 15:48
Markdium-Introduction
<table border='1' style="width:100%; text-align:center">
<thead>
<tr>
<th> Name </th>
<th> Surname </th>
<th> Age </th>
</tr>
</thead>
<tbody>