{# SPDX-FileCopyrightText: 2025-2026 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "storefront_base.html" %} {% load static %} {% load i18n %} {% load projectify %} {% block title %} {% translate "Projectify - Free Software project management app" %} {% endblock title %} {% block structured_data %} {% endblock structured_data %} {% block storefront_content %}

{% trans "Manage projects the right way." %}

{% trans "Warp drive your way to success with software that helps you collaborate on and manage projects efficiently at speed." %}

{% if user.is_authenticated %} {% trans "Continue to dashboard" %} {% else %} {% trans "Start a free trial" %} {% endif %}
{% picture src="solutions/development-teams-tasks.png" alt=_("An illustration showing the look and feel of tasks in Projectify's user interface") klass="relative z-10 shadow-lg" fetchpriority="high" %}

{% blocktrans %}Everything you need to stay organized and deliver faster{% endblocktrans %}

{% trans "The go-to project management tool for small teams." %}

{% trans "Plan and execute" %}

{% trans "Set up and monitor features, QA tasks, bug fixes and more for multiple team members of your team." %}

{% picture src="solutions/development-teams-tasks.png" alt=_("An illustration showing tasks in a section called 'In Progress'") %}
{% picture src="solutions/project-management-team-member.png" alt=_("An illustration showing how Projectify displays each team members assigned task count") %}

{% trans "An ethical approach to management" %}

{% trans "View how many tasks a team member has assigned to them, so the workload can be divided equally. Filter by team member to see what individual colleagues are working on." %}

{% trans "Permissions to control access" %}

{% trans "Make sure nothing important gets deleted. With permission roles - Owner, Maintainer, Contributor and Observer, you can be safe in knowing there won't be any accidental data loss." %}

{% picture src="solutions/project-management-permissions.png" alt=_("An illustration of a settings screen showing team members belonging to a team member and their role within the workspace. The illustration also shows a button allowing filtering by role and another button letting a user invite new team members") %}

{% trans "Pricing" %}

{% trans "One plan. One price. All features." %}

{% trans "Universal Plan" %}

{% blocktranslate with price="$8.00" %}{{ price }} / seat per month{% endblocktranslate %}

{% trans "What's included:" %}

  • {% trans "Unlimited tasks" %}
  • {% trans "Unlimited projects" %}
  • {% trans "Collaborate with team members" %}
  • {% trans "Role permissions" %}
  • {% trans "Customize your workspace" %}
  • {% trans "Archive completed projects" %}
  • {% trans "Filter by assignee" %}
  • {% trans "Accessible interface" %}
{% if user.is_authenticated %} {% trans "Learn more" %} {% else %} {% trans "Start a free trial" %} {% endif %}

{% trans "Trial mode available" %}

{% blocktranslate %} You can use a Projectify workspace in trial mode free of charge. The trial allows you to evaluate whether the Projectify project management software suits your needs. While your workspace is in trial mode, the following limitations will apply: {% endblocktranslate %}

  • {% blocktranslate with team_members=2 %}Your workspace can have up to {{ team_members }} team members{% endblocktranslate %}
  • {% blocktranslate with projects=10 %}Your workspace can hold up to {{ projects }} projects{% endblocktranslate %}
  • {% blocktranslate with sections=100 %}You can create up to {{ sections }} sections{% endblocktranslate %}
  • {% blocktranslate with tasks=1000 %}You can create up to {{ tasks }} tasks{% endblocktranslate %}

{% trans "We never sell your data. Ever." %}

{% trans "Our platform fully complies with GDPR regulations, amongst others, so you can rest assured that your private information stays private." %}

{% url "storefront:privacy" as pp_url %} {% anchor pp_url label=_("Learn more about privacy and Projectify") %}
{% url "storefront:free_software" as learnmore_url %} {% picture src="open-source.png" alt=_("Birds freed from their gilded cages") %}

{% trans "Projectify is 100 % Free Software" %}

{% trans "We respect your freedom and privacy and provide you with the source code under a Free Software license. The Projectify application is licensed under the GNU Affero General Public License (AGPL) version 3.0 or later." %}

{% url "storefront:free_software" as learnmore_url %} {% anchor learnmore_url label=_("Learn more about Free Software") %}

{% trans "Run Projectify on your own computer" %}

{% trans "Here's how you can quickly spin up a demo instance on your own computer:" %}

python -m venv projectify
projectify/bin/pip install projectify-app[demo]
projectify/bin/projectify-demo

{% anchor href="http://localhost:8100" label="http://localhost:8100" as anchor %} {% blocktrans with anchor=anchor %} Open {{ anchor }} in your browser and press Log in in the top right. Use these demo credentials: {% endblocktrans %}

  • {% blocktrans %}Email: admin@localhost{% endblocktrans %}
  • {% blocktrans %}Password: password{% endblocktrans %}

{% translate "That's all you need to try Projectify." %}

{% if latest_posts %}

{% trans "Recent blog posts" %}

{% trans "Here's where we publish product updates and other news." %}

    {% for post in latest_posts %}
  • {% anchor href=post.get_absolute_url label=post.title %} {% blocktrans with date=post.published %}{{ date }}{% endblocktrans %}
  • {% endfor %}
{% anchor label=_("View all blog posts") href="blog:post_list" %}
{% endif %}
{% endblock storefront_content %}