# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
+from django.conf import settings
from django.contrib import admin
from events.models import Event
+from migdal.helpers import translated_fields
-admin.site.register(Event)
+
+class EventAdmin(admin.ModelAdmin):
+ list_display = translated_fields(
+ ('title', 'place', 'organizer'), settings.LANGUAGES
+ ) + ('date',)
+ date_hierarchy = 'date'
+
+
+admin.site.register(Event, EventAdmin)
msgstr ""
"Project-Id-Version: prawokultury-events\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-08-07 17:28+0200\n"
-"PO-Revision-Date: 2012-08-07 17:29+0100\n"
+"POT-Creation-Date: 2012-08-28 11:24+0200\n"
+"PO-Revision-Date: 2012-08-28 11:28+0100\n"
"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
"Language-Team: FNP <fundacja@nowoczesnapolska.org.pl>\n"
"Language: \n"
msgid "events"
msgstr "wydarzenia"
-#: models.py:20
+#: models.py:24
msgid "title"
msgstr "tytuł"
-#: models.py:21
+#: models.py:25
msgid "organizer"
msgstr "organizator"
-#: models.py:22
+#: models.py:26
msgid "place"
msgstr "miejsce"
-#: templates/events/event_list.html:5
+#: urls.py:11
+msgid "past"
+msgstr "przeszle"
+
+#: templates/events/event_list.html:7
msgid "Events"
msgstr "Wydarzenia"
-#: templates/events/snippets/events_box.html:15
+#: templates/events/event_list.html:18
+msgid "see upcoming events"
+msgstr "zobaczy nadchodzące wydarzenia"
+
+#: templates/events/event_list.html:22
+msgid "see past events"
+msgstr "zobacz przeszłe wydarzenia"
+
+#: templates/events/snippets/event_short.html:9
+msgid "Organizer"
+msgstr "Organizator"
+
+#: templates/events/snippets/events_box.html:21
msgid "more events"
msgstr "więcej wydarzeń"
verbose_name_plural = _('events')
ordering = ['date']
+ def __unicode__(self):
+ return self.title
+
+
add_translatable(Event, {
'title': models.CharField(_('title'), max_length=255),
'organizer': models.CharField(_('organizer'), max_length=255, db_index=True),
<div class="mon">{{ event.date|date:"b" }}</div>
</div>
<div class="description">
- {{ event.place }}
{{ event.title }}
- {{ event.organizer }}
+ ({{ event.organizer }}, {{ event.place }})
</div>
<div style="clear: both"></div>
</a>
# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
+from django.conf import settings
from django.contrib import admin
from django.utils.translation import ugettext_lazy as _
from migdal.models import Category, Entry, Attachment
-from migdal import settings
-
-
-def translated_fields(field_names, languages=settings.LANGUAGES):
- return tuple("%s_%s" % (field_name, lang_code)
- for field_name in field_names
- for lang_code, lang_name in languages
- )
+from migdal import app_settings
+from migdal.helpers import translated_fields
class AttachmentInline(admin.TabularInline):
class EntryAdmin(admin.ModelAdmin):
+ date_hierarchy = 'date'
fieldsets = (
(None, {'fields': (('type', 'promo'), 'author', 'author_email', 'image')}),
) + tuple(
'lead_%s' % lc,
'body_%s' % lc,
)})
- for lc, ln in settings.OBLIGATORY_LANGUAGES
+ for lc, ln in app_settings.OBLIGATORY_LANGUAGES
) + tuple(
(ln, {'fields': (
('needed_%s' % lc, 'published_%s' % lc),
'lead_%s' % lc,
'body_%s' % lc,
)})
- for lc, ln in settings.OPTIONAL_LANGUAGES
+ for lc, ln in app_settings.OPTIONAL_LANGUAGES
) + (
(_('Categories'), {'fields': ('categories',)}),
)
for lang_code, lang_name in settings.LANGUAGES
])
- list_display = translated_fields(('title',), settings.OBLIGATORY_LANGUAGES
- ) + ('type', 'date', 'author'
+ list_display = translated_fields(('title',), app_settings.OBLIGATORY_LANGUAGES
+ ) + ('type', 'date', 'author', 'promo'
) + translated_fields(('published',)
- ) + translated_fields(('needed',), settings.OPTIONAL_LANGUAGES)
- list_filter = ('type',) + translated_fields(('published',)
- ) + translated_fields(('needed',), settings.OPTIONAL_LANGUAGES)
+ ) + translated_fields(('needed',), app_settings.OPTIONAL_LANGUAGES)
+ list_filter = ('type', 'promo') + translated_fields(('published',)
+ ) + translated_fields(('needed',), app_settings.OPTIONAL_LANGUAGES)
inlines = (AttachmentInline,)
def __init__(self, *args, **kwargs):
super(SubmitForm, self).__init__(*args, **kwargs)
- self.fields['title_%s' % lang].required = True
- self.fields['lead_%s' % lang].required = True
+ title = self.fields['title_%s' % lang]
+ title.required = True
+ title.label = _('Title')
+ lead = self.fields['lead_%s' % lang]
+ lead.required = True
+ lead.label = _('Content')
def clean(self):
data = super(SubmitForm, self).clean()
setattr(index_class, fname, new_field)
index_class.fields[fname] = new_field
+
+def translated_fields(field_names, languages=settings.LANGUAGES):
+ return tuple("%s_%s" % (field_name, lang_code)
+ for field_name in field_names
+ for lang_code, lang_name in languages
+ )
msgstr ""
"Project-Id-Version: django-migdal 0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-08-08 15:23+0200\n"
-"PO-Revision-Date: 2012-08-08 15:26+0100\n"
+"POT-Creation-Date: 2012-08-28 12:10+0200\n"
+"PO-Revision-Date: 2012-08-28 12:14+0100\n"
"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
"Language-Team: FNP <fundacja@nowoczesnapolska.org.pl>\n"
"Language: Polish\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
"X-Poedit-Language: Polish\n"
-#: admin.py:45
+#: __init__.py:17
+msgid "news"
+msgstr "newsy"
+
+#: __init__.py:18
+msgid "publications"
+msgstr "publikacje"
+
+#: __init__.py:19
+msgid "info"
+msgstr "info"
+
+#: __init__.py:23
+msgid "topics"
+msgstr "tematy"
+
+#: __init__.py:24
+msgid "types"
+msgstr "rodzaje"
+
+#: admin.py:41
msgid "Categories"
msgstr "Kategorie"
-#: feeds.py:26
+#: feeds.py:28
msgid "latest"
msgstr "ostatnie"
-#: feeds.py:30
-#: models.py:46
+#: feeds.py:32
+#: models.py:49
msgid "entries"
msgstr "wpisy"
-#: feeds.py:32
+#: feeds.py:34
msgid "in category"
msgstr "w kategorii"
-#: models.py:15
+#: forms.py:28
+msgid "Title"
+msgstr "Tytuł"
+
+#: forms.py:31
+msgid "Content"
+msgstr "Treść"
+
+#: models.py:14
+msgid "taxonomy"
+msgstr "taksonomia"
+
+#: models.py:18
msgid "category"
msgstr "kategoria"
-#: models.py:16
-#: urls.py:35
-#: urls.py:37
+#: models.py:19
+#: urls.py:40
+#: urls.py:42
msgid "categories"
msgstr "kategorie"
-#: models.py:37
+#: models.py:40
msgid "author"
msgstr "autor"
-#: models.py:38
+#: models.py:41
msgid "author email"
msgstr "e-mail autora"
-#: models.py:39
+#: models.py:42
msgid "Used only to display gravatar and send notifications."
msgstr "Używany tylko do wyświetlenia gravatara i wysyłania powiadomień."
-#: models.py:40
+#: models.py:43
msgid "image"
msgstr "obrazek"
-#: models.py:41
+#: models.py:44
msgid "promoted"
msgstr "promowane"
-#: models.py:45
+#: models.py:48
msgid "entry"
msgstr "wpis"
-#: models.py:68
+#: models.py:71
msgid "needed"
msgstr "potrzebne"
-#: models.py:69
+#: models.py:72
msgid "Unneeded"
msgstr "Niepotrzebne"
-#: models.py:69
+#: models.py:72
msgid "Needed"
msgstr "Potrzebne"
-#: models.py:69
+#: models.py:72
msgid "Done"
msgstr "Ukończone"
-#: models.py:75
+#: models.py:78
msgid "title"
msgstr "tytuł"
-#: models.py:76
+#: models.py:79
msgid "lead"
msgstr "lead"
-#: models.py:77
-#: models.py:79
+#: models.py:80
+#: models.py:82
msgid "Use <a href=\"http://textile.thresholdstate.com/\">Textile</a> syntax."
msgstr "Włączona składnia <a href=\"http://textile.thresholdstate.com/\">Textile</a>."
-#: models.py:78
+#: models.py:81
msgid "body"
msgstr "treść"
-#: models.py:80
+#: models.py:83
msgid "published"
msgstr "opublikowane"
-#: models.py:85
+#: models.py:88
msgid "file"
msgstr "plik"
-#: settings.py:19
-msgid "news"
-msgstr "newsy"
-
-#: settings.py:20
-msgid "publications"
-msgstr "publikacje"
-
-#: settings.py:21
-msgid "info"
-msgstr "info"
-
-#: urls.py:32
-#: urls.py:33
+#: urls.py:37
+#: urls.py:38
msgid "submit"
msgstr "wyslij"
-#: urls.py:33
+#: urls.py:38
msgid "thanks"
msgstr "dzieki"
msgid "Preview"
msgstr "Podgląd"
-#: templates/migdal/entry/entry_list.html:10
+#: templates/migdal/entry/entry_list.html:22
msgid "Category"
msgstr "Kategoria"
-#: templates/migdal/entry/entry_list.html:16
-msgid "Latest news"
-msgstr "Ostatnie newsy"
-
-#: templates/migdal/entry/entry_list.html:21
-msgid "Submit a new story."
-msgstr "Przyślij nowego newsa."
-
-#: templates/migdal/entry/entry_short.html:10
-msgid "read more"
-msgstr "czytaj więcej"
+#: templates/migdal/entry/entry_list.html:55
+msgid "Submit a new story, create Culture's Right with us!"
+msgstr "Przyślij nowego newsa, twórz Prawo Kultury razem z nami!"
#: templates/migdal/entry/entry_short.html:16
#, python-format
msgstr[1] "%(c)s komentarze"
msgstr[2] "%(c)s komentarzy"
+#: templates/migdal/entry/entry_short.html:21
+msgid "read more"
+msgstr "czytaj więcej"
+
#: templates/migdal/entry/submit.html:7
msgid "Submit new story"
msgstr "Przyślij nowego newsa."
+#: templates/migdal/entry/submit.html:9
+msgid ""
+"\n"
+"By submitting a story here, you agree to publish it under the terms of the\n"
+"<a href='http://creativecommons.org/licenses/by-sa/3.0/'>Creative Commons Attribution-Share Alike</a>\n"
+"free license."
+msgstr ""
+"\n"
+"Wysyłając newsa, zgadzasz się najego publikację na warunkach wolnej licencji\n"
+"<a href='http://creativecommons.org/licenses/by-sa/3.0/deed.pl'>Creative Commons Uznanie autorstwa – Na tych samych warunkach</a>."
+
+#: templates/migdal/entry/submit.html:14
+msgid ""
+"Stories are moderated, so please be\n"
+"patient, you'll be notified when it's published."
+msgstr "Newsy są moderowane. Bądź cierpliwy, otrzymasz powiadomienie o jego publikacji."
+
#: templates/migdal/entry/submit_thanks.html:7
msgid "Thanks for submitting"
msgstr "Dziękujemy za zgłoszenie"
"\n"
"Dziękujemy za przysłanie nowego newsa, teraz czeka on na moderację.Jeśli podano adres e-mail, będziemy Cię informowali o zmianach statusui komentarzach\n"
+#: templates/search/search.html:9
+msgid "Search results"
+msgstr "Wyniki wyszukiwania"
+
+#: templates/search/search.html:18
+msgid "No results found."
+msgstr "Brak wyników."
+
+#: templates/search/search.html:25
+msgid "previous"
+msgstr "poprzednie"
+
+#: templates/search/search.html:28
+msgid "next"
+msgstr "następne"
+
+#: templatetags/migdal_tags.py:128
+msgid "Publications"
+msgstr "Publikacje"
+
+#: templatetags/migdal_tags.py:129
+msgid "Events"
+msgstr "Wydarzenia"
+
+#: templatetags/migdal_tags.py:131
+msgid "Positions"
+msgstr "Stanowiska"
+
+#~ msgid "Latest news"
+#~ msgstr "Ostatnie newsy"
+
+#~ msgid "Submit a new story."
+#~ msgstr "Przyślij nowego newsa."
<div class="date">{{ object.date }}</div>
<div class="author">{{ object.author }}</div>
+{% comment %}
{% if request.LANGUAGE_CODE == 'pl' %}
{% if object.published_en %}
{% language 'en' %}
<a href="{{ object.get_absolute_url }}">polska wersja</a>
{% endlanguage %}
{% endif %}
+{% endcomment %}
<div class="categories">
{% for category in object.categories.all %}
<div class="lead">
{{ object.lead }}
</div>
-<div style="clear: both"></div>
-
{% if submit %}
<p class="submit-link">
- <a href="{% url 'migdal_submit' %}">{% trans "Submit a new story." %}</a>
+ <a href="{% url 'migdal_submit' %}">{% trans "Submit a new story, create Culture's Right with us!" %}</a>
</p>
{% endif %}
{% load i18n %}
-<li class="promobox-item{% if counter == 1 %} active"{% endif %}
+<li class="promobox-item{% if counter == 1 %} active{% endif %}"
style="
{% if counter != 1 %}display: none;{% endif %}
{% if object.image %}
<h2>{{ object.title }}</h2>
<div class="lead">
-{{ object.lead }}
+{{ object.lead|striptags|truncatewords:8 }}
</div>
</div>
</div>
{% endif %}
+{% comment %}
<div class="entry-data">
{% if request.LANGUAGE_CODE == 'pl' %}
{% if object.published_en %}
{% endlanguage %}
{% endif %}
</div>
+{% endcomment %}
{% if object.image %}
{% endif %}
+{% comment %}
<div class="entry-data">
{% if request.LANGUAGE_CODE == 'pl' %}
{% if object.published_en %}
{% endlanguage %}
{% endif %}
</div>
+{% endcomment %}
{% if object.image %}
<h1>{% trans "Submit new story" %}</h1>
+<p class="form-info">{% blocktrans %}
+By submitting a story here, you agree to publish it under the terms of the
+<a href='http://creativecommons.org/licenses/by-sa/3.0/'>Creative Commons Attribution-Share Alike</a>
+free license.{% endblocktrans %}</p>
- <form method="post" action="{% url 'migdal_submit' %}">
- {% csrf_token %}
- <table>
- {{ submit_form.as_table }}
- <tr><td><button type="submit">Go!</button></td></tr>
- </table>
- </form>
+<p>{% blocktrans %}Stories are moderated, so please be
+patient, you'll be notified when it's published.{% endblocktrans %}</p>
+
+<form class="submit-form" method="post" action="{% url 'migdal_submit' %}">
+{% csrf_token %}
+<table>
+ {{ submit_form.as_table }}
+ <tr><td><button type="submit">Go!</button></td></tr>
+</table>
+</form>
{% endblock %}
\ No newline at end of file
{% endif %}
{% empty %}
<p>{% trans "No results found." %}</p>
+{# Show some example queries to run, maybe query syntax, something else? #}
{% endfor %}
{% if page.has_previous or page.has_next %}
-<div>
- {% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}{% trans "« Previous" %}{% if page.has_previous %}</a>{% endif %}
- |
- {% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}{% trans "Next »" %}{% if page.has_next %}</a>{% endif %}
-</div>
-{% else %}
-{# Show some example queries to run, maybe query syntax, something else? #}
+<p class="prevnext">
+ {% if page.has_previous %}
+ <a class="previous_page" href="?q={{ query }}&page={{ page.previous_page_number }}">{% trans "previous" %}</a>
+ {% endif %}
+ {% if page.has_next %}
+ <a class="next_page" href="?q={{ query }}&page={{ page.next_page_number }}">{% trans "next" %}</a>
+ {% endif %}
{% endif %}
+
{% endblock "body" %}
def categories(context, taxonomy):
context = {
'request': context['request'],
- 'object_list': Category.objects.filter(taxonomy=taxonomy)
+ 'object_list': Category.objects.filter(taxonomy=taxonomy
+ ).exclude(entry__isnull=True)
}
return context
MenuItem(_(u'Events'), reverse('events')),
CategoryMenuItem(Category.objects.get(slug_pl='stanowisko'),
title=_('Positions')),
- CategoryMenuItem(Category.objects.get(slug_pl='pierwsza-pomoc'),
- title=_('First aid in copyright')),
+ #CategoryMenuItem(Category.objects.get(slug_pl='pierwsza-pomoc'),
+ # title=_('First aid in copyright')),
]
- if context['request'].LANGUAGE_CODE == 'pl':
- items.append(MenuItem(u'en', '/en/', html_id='item-lang'))
- else:
- items.append(MenuItem(u'pl', '/', html_id='item-lang'))
+ #if context['request'].LANGUAGE_CODE == 'pl':
+ # items.append(MenuItem(u'en', '/en/', html_id='item-lang'))
+ #else:
+ # items.append(MenuItem(u'pl', '/', html_id='item-lang'))
for item in items:
item.check_active(chooser, value)
return {'items': items}
# This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
-from django.conf.urls import patterns, include, url
+from django.conf.urls import patterns, include, url, handler404
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import string_concat
from migdal import feeds, app_settings
name='migdal_entry_%s' % t.db),
]
-urlpatterns = i18n_patterns('',
+
+# Disable en for now.
+urlpatterns = patterns('',
+ url(r'^en/', handler404),
+)
+urlpatterns += i18n_patterns('',
# main page
url(r'^$', 'migdal.views.entry_list', name='migdal_main'),
url(r'^rss.xml$', feeds.EntriesFeed(), name='migdal_main_feed'),
msgstr ""
"Project-Id-Version: prawokultury\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-08-07 17:28+0200\n"
-"PO-Revision-Date: 2012-08-07 17:31+0100\n"
+"POT-Creation-Date: 2012-08-28 12:13+0200\n"
+"PO-Revision-Date: 2012-08-28 12:13+0100\n"
"Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
"Language-Team: FNP <fundacja@nowoczesnapolska.org.pl>\n"
"Language: \n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
-#: urls.py:23
+#: urls.py:24
msgid "events"
msgstr "wydarzenia"
#: templates/base.html:8
-#: templates/base.html.py:12
+#: templates/base.html.py:18
msgid "Culture's right"
msgstr "Prawo kultury"
-#: templates/base.html:15
-#: templates/base.html.py:17
-msgid "About us"
-msgstr "O nas"
+#: templates/base.html:23
+msgid "Organizer"
+msgstr "Organizator"
-#: templates/base.html:19
-msgid "Publications"
-msgstr "Publikacje"
+#: templates/base.html:26
+msgid "Modern Poland Foundation"
+msgstr "Fundacja Nowoczesna Polska"
-#: templates/base.html:20
-msgid "Events"
-msgstr "Wydarzenia"
+#: templates/base.html:28
+msgid "Sponsor"
+msgstr "Sponsor"
-#: templates/base.html:22
-#: templates/base.html.py:26
-msgid "Positions"
-msgstr "Stanowiska"
+#: templates/base.html:31
+msgid "Trust for Civil Society in Central and Eastern Europe"
+msgstr ""
-#: templates/base.html:23
-#: templates/base.html.py:27
-msgid "First aid"
-msgstr "Pierwsza pomoc"
+#: templates/base.html:40
+msgid "Search"
+msgstr "Szukaj"
-#: templates/base.html:35
+#: templates/base.html:55
msgid "Upcoming events"
msgstr "Nadchodzące wydarzenia"
-#: templates/base.html:39
-msgid "Categories"
-msgstr "Kategorie"
-
-#: templates/base.html:43
+#: templates/base.html:66
msgid "Latest comments"
msgstr "Ostatnie komentarze"
-#: templates/base.html:47
-msgid "Follow us"
-msgstr "Śledź nas"
+#: templates/base.html:86
+msgid "If not explicitly stated otherwise, all texts are licensed under the <a href='http://creativecommons.org/licenses/by-sa/3.0/'>Creative Commons Attribution-Share Alike</a> free license."
+msgstr "Jeśli nie oznaczono inaczej, wszystkie teksty są objęte wolną licencją <a href='http://creativecommons.org/licenses/by-sa/3.0/deed.pl'>Creative Commons Uznanie autorstwa – Na tych samych warunkach</a>."
+
+#: templates/prevnext/next.html:13
+msgid "next"
+msgstr "następne"
+
+#: templates/prevnext/previous.html:13
+msgid "previous"
+msgstr "poprzednie"
+
+#~ msgid "About us"
+#~ msgstr "O nas"
+
+#~ msgid "Publications"
+#~ msgstr "Publikacje"
+
+#~ msgid "Events"
+#~ msgstr "Wydarzenia"
+
+#~ msgid "Positions"
+#~ msgstr "Stanowiska"
+
+#~ msgid "First aid"
+#~ msgstr "Pierwsza pomoc"
+
+#~ msgid "Categories"
+#~ msgstr "Kategorie"
+
+#~ msgid "Follow us"
+#~ msgstr "Śledź nas"
'css/entry.scss',
'css/footer.scss',
'css/prevnext.scss',
+ 'css/forms.scss',
'events/events.scss',
),
'output_filename': 'compressed/base.css',
.entry-wrapped h1 a, .entry-wrapped h2 a {
color: #01519a; }
.entry-wrapped .entry-data {
- font-size: 1.1em;
+ font-size: 1.2em;
margin-top: 1.4em;
margin-bottom: 1.4em; }
.entry-wrapped .entry-data .date {
.entry-wrapped .entry-data .categories a {
color: black; }
.entry-wrapped .lead {
- font-size: 1.1em; }
+ font-size: 1.2em; }
.entry-wrapped .body {
- font-size: 1.1em; }
+ font-size: 1.2em; }
.entry-wrapped .more {
+ clear: both;
float: right;
- font-size: 1.1em;
+ font-size: 1.2em;
font-style: italic;
margin-top: .6em;
margin-bottom: 1.8em; }
border-bottom: 1px solid #8b8b87; }
.submit-link a {
color: black;
- font-size: 1.1em; }
+ font-size: 1.2em; }
.submit-link a:before {
content: url("/static/img/plus.png");
vertical-align: top;
}
.entry-data {
- font-size: 1.1em;
+ font-size: 1.2em;
margin-top: 1.4em;
margin-bottom: 1.4em;
.date {
}
.lead {
- font-size: 1.1em;
+ font-size: 1.2em;
}
.body {
- font-size: 1.1em;
+ font-size: 1.2em;
}
.more {
+ clear: both;
float: right;
- font-size: 1.1em;
+ font-size: 1.2em;
font-style: italic;
margin-top: .6em;
margin-bottom: 1.8em;
a {
color: black;
- font-size: 1.1em;
+ font-size: 1.2em;
}
a:before {
content: url("/static/img/plus.png");
padding-top: 1.5em;
margin-top: 4em;
margin-left: 1em;
- margin-right: 1em; }
+ margin-right: 1em;
+ margin-bottom: 1em; }
.footer-item {
width: 24em;
margin-top: 4em;
margin-left: 1em;
margin-right: 1em;
+ margin-bottom: 1em;
}
.footer-item {
--- /dev/null
+.form-info {
+ font-size: 1.2em; }
+
+.submit-form {
+ margin-top: 1.3em; }
+ .submit-form table {
+ border-spacing: 0 .5em; }
+ .submit-form tr {
+ background-color: #fdfdfd; }
+ .submit-form label {
+ font-size: 1.2em;
+ font-weight: normal; }
+ .submit-form input, .submit-form textarea, .submit-form select {
+ font-size: 1.2em;
+ border: 0;
+ background-color: #fdfdfd;
+ width: 100%;
+ margin-bottom: .5em; }
+ .submit-form th, .submit-form td {
+ text-align: left;
+ font-weight: normal;
+ vertical-align: top;
+ padding: .5em 0; }
+ .submit-form .helptext {
+ color: #acacac;
+ font-size: 1.1em; }
+ .submit-form .helptext a {
+ color: black; }
--- /dev/null
+.form-info {
+ font-size: 1.2em;
+}
+
+.submit-form {
+ margin-top: 1.3em;
+
+ table {
+ border-spacing: 0 .5em;
+ }
+
+ tr {
+ background-color: #fdfdfd;
+ }
+
+ label {
+ font-size: 1.2em;
+ font-weight: normal;
+ }
+
+ input, textarea, select {
+ font-size: 1.2em;
+ border: 0;
+ background-color: #fdfdfd;
+ width: 100%;
+ margin-bottom: .5em;
+ }
+
+
+ th, td {
+ text-align: left;
+ font-weight: normal;
+ vertical-align: top;
+ padding: .5em 0;
+ }
+
+ .helptext {
+ color: #acacac;
+ font-size: 1.1em;
+ a {
+ color: black;
+ }
+ }
+}
.prevnext {
- font-size: 1.1em;
+ font-size: 1.2em;
font-style: italic;
margin-top: 1.4em; }
.prevnext a {
.prevnext {
- font-size: 1.1em;
+ font-size: 1.2em;
font-style: italic;
margin-top: 1.4em;
margin-top: .4em; }
#search-form input {
font-size: 1.1em;
- width: 17.1em;
+ width: 16.1em;
padding-left: 1em;
border: none;
border-radius: 1.5em 0 0 1.5em;
input {
font-size: 1.1em;
- width: 17.1em;
+ width: 16.1em;
padding-left: 1em;
border: none;
border-radius: 1.5em 0 0 1.5em;
alt="{% trans "Modern Poland Foundation" %}" /></a>
</div><div class="org-trust">
<span>{% trans "Sponsor" %}</span><br/>
- <a href="http://osi">
+ <a href="http://ceetrust.org">
<img src="{% static 'img/logo-trust.png' %}"
alt="{% trans "Trust for Civil Society in Central and Eastern Europe" %}" /></a>
</div>
<p class="footer-item">
<strong>Fundacja Nowoczesna Polska</strong><br/>
<br/>
- ul.Marszałkowska 84/92 lok. 125<br/>
+ ul. Marszałkowska 84/92 lok. 125<br/>
00-514 Warszawa<br/>
tel/fax: +48 22 621 30 17<br/>
- e-mail: fundacja@nowoczesnapolska.org.pl
+ e-mail: fundacja@nowoczesnapolska.org.pl<br/>
+ <br/>
+ {% trans "If not explicitly stated otherwise, all texts are licensed under the <a href='http://creativecommons.org/licenses/by-sa/3.0/'>Creative Commons Attribution-Share Alike</a> free license." %}
</p>
<p class="footer-item">
<br/><br/>
REGON: 017423865<br/>
Nr konta: 46 10201097 0000 7502 0001 6766
</p>
+ <div style="clear: both;"></div>
</div>
</div>