Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
6534a95a
Kaydet (Commit)
6534a95a
authored
Ara 18, 2012
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #19470 - Clarified widthratio example.
Thanks orblivion for the suggestion.
üst
31f49f13
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
defaulttags.py
django/template/defaulttags.py
+4
-4
builtins.txt
docs/ref/templates/builtins.txt
+4
-4
No files found.
django/template/defaulttags.py
Dosyayı görüntüle @
6534a95a
...
...
@@ -1319,11 +1319,11 @@ def widthratio(parser, token):
For example::
<img src='bar.gif' height='10' width='{
%
widthratio this_value max_value
100
%
}' />
<img src='bar.gif' height='10' width='{
%
widthratio this_value max_value
max_width
%
}' />
Above, if ``this_value`` is 175 and ``max_value`` is 200, the image in
the
above example will be 88 pixels wide (because 175/200 = .875;
.875 * 100 = 87.5 which is rounded up to 88).
If ``this_value`` is 175, ``max_value`` is 200, and ``max_width`` is 100,
the
image in the above example will be 88 pixels wide
(because 175/200 = .875;
.875 * 100 = 87.5 which is rounded up to 88).
"""
bits
=
token
.
contents
.
split
()
if
len
(
bits
)
!=
4
:
...
...
docs/ref/templates/builtins.txt
Dosyayı görüntüle @
6534a95a
...
...
@@ -1079,11 +1079,11 @@ value to a maximum value, and then applies that ratio to a constant.
For example::
<img src="bar.png" alt="Bar"
height="10" width="{% widthratio this_value max_value
100
%}" />
height="10" width="{% widthratio this_value max_value
max_width
%}" />
Above, if ``this_value`` is 175 and ``max_value`` is 200, the image in
the
above example will be 88 pixels wide (because 175/200 = .875; .875 * 100 = 87.5
which is rounded up to 88).
If ``this_value`` is 175, ``max_value`` is 200, and ``max_width`` is 100,
the
image in the above example will be 88 pixels wide
(because 175/200 = .875; .875 * 100 = 87.5
which is rounded up to 88).
.. templatetag:: with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment