Accepting request 693919 from home:jengelh:branches:devel:languages:python
- Trim bias from descriptions. Make sure % is escaped. OBS-URL: https://build.opensuse.org/request/show/693919 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Jinja2?expand=0&rev=67
This commit is contained in:
parent
45d9838fa2
commit
08a1273b8f
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 13 16:46:23 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Trim bias from descriptions. Make sure % is escaped.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 13 03:06:31 UTC 2019 - Arun Persaud <arun@gmx.de>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
Name: python-Jinja2
|
||||
Version: 2.10.1
|
||||
Release: 0
|
||||
Summary: A fast and easy to use template engine written in pure Python
|
||||
Summary: A template engine written in pure Python
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: http://jinja.pocoo.org/
|
||||
@ -45,15 +45,15 @@ Jinja2 is a template engine written in pure Python. It provides a Django
|
||||
inspired non-XML syntax but supports inline expressions and an optional
|
||||
sandboxed environment. Here a small example of a Jinja template:
|
||||
|
||||
{% extends 'base.html' %}
|
||||
{% block title %}Memberlist{% endblock %}
|
||||
{% block content %}
|
||||
{%% extends 'base.html' %%}
|
||||
{%% block title %%}Memberlist{%% endblock %%}
|
||||
{%% block content %%}
|
||||
<ul>
|
||||
{% for user in users %}
|
||||
{%% for user in users %%}
|
||||
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
|
||||
{% endfor %}
|
||||
{%% endfor %%}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
{%% endblock %%}
|
||||
|
||||
%package -n python-Jinja2-vim
|
||||
Summary: Jinja2 syntax files for Vim
|
||||
|
Loading…
x
Reference in New Issue
Block a user