{% extends g.theme.master %} {% set wiki_found = False %} {% set code_found = False %} {% set tracker_found = False %} {% set downloads_found = False %} {% set forum_found = False %} {% block title %}{{c.project.name}} / Admin{% endblock %} {% block header %}Project Admin{% endblock %} {% block content %}

SourceForge beta projects come with a number of Tools, which can be configured and adjusted to your needs.

Project Setup

The first thing to do to setup your project is to create a solid description, so folks coming to your page can figure out what the project is all about. You'll then want to input information about the project, and we'll make sure all this relevant information gets added to the SourceForge sourceforge project directory.

Update MetaData

Wikis

You can create documentation, post proposed feature descriptions, and discuss these shared documents.

{% for tool in c.project.app_configs %} {% if tool.tool_name == 'Wiki' and not wiki_found %} Add Page
View Wiki {% set wiki_found = True %} {% endif %} {% endfor %}

Code

Git/SVN/Hg will help you keep track of code changes over time. A repository has already been created, checkout, add files and upload code.

{% for tool in c.project.app_configs %} {% if (tool.tool_name == 'Git' or tool.tool_name == 'Hg' or tool.tool_name == 'SVN') and not code_found %} Checkout repo
View source {% set code_found = True %} {% endif %} {% endfor %}

Tickets

With the SourceForge tracker you can keep track of items of work that need to be done. You can create one or more trackers for bugs, enhancements, tasks, that will help you plan and manage your development process.

{% for tool in c.project.app_configs %} {% if tool.tool_name == 'Tickets' and not tracker_found %} Create Ticket
Edit Milestones
View Tickets {% set tracker_found = True %} {% endif %} {% endfor %}
{% if config.get('auth.method', 'local') == 'sfx' %}

Downloads

Upload releases, track who is downloading your project around the world, and use the largest free, managed, global mirror network to distribute your files.

{% for tool in c.project.app_configs %} {% if tool.tool_name == 'Downloads' and not downloads_found %} Upload Release
View Releases {% set downloads_found = True %} {% endif %} {% endfor %}
{% endif %}

Forums

To use the forums, create a couple of forums, post introductory messages, and check out the spam controll/post moderation options.

{% for tool in c.project.app_configs %} {% if tool.tool_name == 'Discussion' and not forum_found %} Create Forum
View Forums {% set forum_found = True %} {% endif %} {% endfor %}
{% endblock %}