- Author:
- muslu
- Posted:
- June 19, 2012
- Language:
- Python
- Version:
- 1.3
- Tags:
- template html simple_tag split
- Score:
- 0 (after 2 ratings)
Html içinde split ile kesme
Kesme işleminden sonra kaçıncı bloğun okunacağını düzeltebilme
{% kes request.path "/" 3 4 %}
gelenveri.split("/")[3:4]
1 2 3 4 5 6 | @register.simple_tag
def kes(gelenveri, isaret, bas, son):
print gelenveri, isaret, bas, son
return gelenveri.split(isaret)[int(bas):int(son)]
|
More like this
- "Magic Link" Management Command by webology 1 month ago
- Closest ORM models to a latitude/longitude point by simonw 1 month ago
- Log the time taken to execute each DB query by kennyx46 1 month ago
- django database snippet by ItsRLuo 1 month ago
- Serialize a model instance by chriswedgwood 2 months ago
Comments
Please post in english only. Thank you!
#
Please login first before commenting.