Skip to content

Commit

Permalink
Release commit for v.0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerd77 authored and holgerd77 committed Feb 18, 2017
1 parent 850a449 commit 7044888
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
4 changes: 4 additions & 0 deletions docs/developers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ Then translate the missing identifier strings and compile the message files with

Release Notes
=============
**Changes in version 0.7.4-beta** (2017-02-18)

* Bugfixes

**Changes in version 0.7.3-beta** (2017-02-18)

* Fix tag cloud links on start page for english version
Expand Down
Binary file modified public_project/locale/en/LC_MESSAGES/django.mo
Binary file not shown.
5 changes: 2 additions & 3 deletions public_project/locale/en/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ msgstr "questions/"
#: feeds.py:18 models.py:376 models.py:439 models.py:567
#: templates/search.html:19
msgid "Subject Areas"
msgstr ""
msgstr "Topics"

#: feeds.py:19
#, python-format
Expand Down Expand Up @@ -1456,9 +1456,8 @@ msgid "Agreement at"
msgstr ""

#: templates/info_box/project_parts.html:18
#, fuzzy
msgid "No project_parts available."
msgstr "documents/"
msgstr "No topics available."

#: templates/info_box/questions.html:81
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletion public_project/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ class Document(models.Model):
activities = GenericRelation('ActivityLog')

def __unicode__(self):
return self.title + " (" + datetime.strftime(self.date, '%d.%m.%Y') + ")"
return self.title + " (" + datetime.strftime(self.date, '%m/%d/%Y') + ")"

def get_feed_description(self):
html = self.description
Expand Down
24 changes: 13 additions & 11 deletions public_project/templates/participant.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,19 @@
{% endwith %}
{% endif %}

{% trans "Comments" as sh_title %}
{% trans "New" as sh_url_title %}
{% trans "comments_url" as comments_url %}
{% with sh_title=sh_title sh_icon="icon-comments" sh_url_title=sh_url_title sh_url="#CommentModal" modal_url="yes" rss_url=comments_url|add:"rss/" %}
{% include "layout_elements/section_header.html" %}
{% endwith %}
{% with form=comment_form form_valid=comment_form_valid commented_object1=participant %}
{% include "dialogs/comment.html" %}
{% endwith %}

{% include "info_box/comments.html" %}
{% if site_config.activate_comments %}
{% trans "Comments" as sh_title %}
{% trans "New" as sh_url_title %}
{% trans "comments_url" as comments_url %}
{% with sh_title=sh_title sh_icon="icon-comments" sh_url_title=sh_url_title sh_url="#CommentModal" modal_url="yes" rss_url=comments_url|add:"rss/" %}
{% include "layout_elements/section_header.html" %}
{% endwith %}
{% with form=comment_form form_valid=comment_form_valid commented_object1=participant %}
{% include "dialogs/comment.html" %}
{% endwith %}

{% include "info_box/comments.html" %}
{% endif %}

</div>

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='django-public-project',
version='0.7.3',
version='0.7.4',
description='Custom CMS for making public projects, political processes or enquiry commission work more transparent',
author='Holger Drewes',
author_email='Holger.Drewes@gmail.com',
Expand Down

0 comments on commit 7044888

Please sign in to comment.