File tree 1 file changed +31
-0
lines changed
1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,37 @@ def DetailView(generic.DetailView):
254
254
<a href="{{ object.get_absolute_url }}">{{ object.name }}</a>
255
255
````
256
256
257
+ ### templates
258
+
259
+ ````
260
+ django.contrib.humanize
261
+ ````
262
+
263
+ ````
264
+ {% extends 'base.html' %}
265
+
266
+ {% block title %}
267
+ {{ section.title }}
268
+ {% endblock %}
269
+
270
+ {% block story %}
271
+ {% for story in story_list %}
272
+ {% story.headline|upper %}
273
+ {% endfor %}
274
+ {% endblock %}
275
+ ````
276
+
277
+ * an empty string is used if a variable is not found {{ var.attr }}
278
+ * filers = |var. for example {{ bio|truncatewords:30 }}{{ value|default:"nothing" }}
279
+ * others can be [ found here] ( https://docs.djangoproject.com/en/1.11/ref/templates/builtins/#ref-templates-builtins-filters )
280
+
281
+ command | description
282
+ --- | ---
283
+ intcomma | adds commas to numbers
284
+ naturalday | yesterday, today, tomorrow for dates
285
+ naturaltime | takes string and returns how long ago it happened
286
+ ordinal | 1st, 2nd, 3rd from ints
287
+
257
288
## Project folder
258
289
259
290
### urls.py
You can’t perform that action at this time.
0 commit comments