mirror of
https://github.com/nanoy42/coope
synced 2024-11-05 01:16:28 +00:00
Fix la vue editKeg
This commit is contained in:
parent
a319ef8adf
commit
a9f0d20779
3 changed files with 6 additions and 4 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
## v3.5.2
|
||||||
|
* Fix la vue editKeg
|
||||||
## v3.5.1
|
## v3.5.1
|
||||||
* Les catégories apapraissent que si elles sont pas vides
|
* Les catégories apapraissent que si elles sont pas vides
|
||||||
* Nombre de produits affiché sur la liste des catégories
|
* Nombre de produits affiché sur la liste des catégories
|
||||||
|
|
|
@ -46,9 +46,9 @@ class KegForm(forms.ModelForm):
|
||||||
"""
|
"""
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(KegForm, self).__init__(*args, **kwargs)
|
super(KegForm, self).__init__(*args, **kwargs)
|
||||||
self.fields['pinte'].queryset = Product.objects.filter(category=Product.P_PRESSION)
|
self.fields['pinte'].queryset = Product.objects.filter(draft_category=Product.DRAFT_PINTE)
|
||||||
self.fields['demi'].queryset = Product.objects.filter(category=Product.D_PRESSION)
|
self.fields['demi'].queryset = Product.objects.filter(draft_category=Product.DRAFT_DEMI)
|
||||||
self.fields['galopin'].queryset = Product.objects.filter(category=Product.G_PRESSION)
|
self.fields['galopin'].queryset = Product.objects.filter(draft_category=Product.DRAFT_GALOPIN)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Keg
|
model = Keg
|
||||||
|
|
|
@ -42,6 +42,6 @@
|
||||||
<li><a href="https://www.facebook.com/coopesmetz/" class="icon fa-facebook alt"><span class="label">Facebook</span></a></li>
|
<li><a href="https://www.facebook.com/coopesmetz/" class="icon fa-facebook alt"><span class="label">Facebook</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<p class="copyright">coope.rez v3.5.1 (release stable) © 2018-2019 Yoann Pietri.</p>
|
<p class="copyright">coope.rez v3.5.2 (release stable) © 2018-2019 Yoann Pietri.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue