Python 3.4-3.7 support;
[librarian.git] / librarian / sponsor.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from __future__ import unicode_literals
7
8 from librarian import get_resource
9
10
11 def sponsor_logo(name):
12     return {
13         'Narodowe Centrum Kultury': get_resource('res/sponsors/nck.png')
14     }.get(name.strip())