Parent: [19af3e] (diff)

Child: [4fdcdd] (diff)

Download this file

project_admin.html    98 lines (89 with data), 4.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{% extends g.theme.master %}
{% set wiki_found = False %}
{% set code_found = False %}
{% set tracker_found = False %}
{% set forum_found = False %}
{% block title %}{{c.project.name}} / Admin{% endblock %}
{% block header %}Project Admin{% endblock %}
{% block content %}
<p>SourceForge projects come with a number of Tools, which can be configured and adjusted to your needs.</p>
<div class="grid-2">
<img src="{{g.forge_static('images/project_default.png')}}" alt="">
</div>
<div class="grid-13">
<h3>Project Setup</h3>
<p>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.</p>
</div>
<div class="grid-4">
<a href="overview">Update MetaData</a>
</div>
<div style="clear:both"></div>
<div class="grid-2">
<img src="{{ g.theme.app_icon_url('Wiki', 48) }}" alt="">
</div>
<div class="grid-13">
<h3>Wikis</h3>
<p>You can create documentation, post proposed feature descriptions, and discuss these shared documents.</p>
</div>
<div class="grid-4">
{% for tool in c.project.app_configs %}
{% if tool.tool_name == 'Wiki' and not wiki_found %}
<a href="{{c.project.url()}}{{tool.options.mount_point}}/add">Add Page</a><br>
<a href="{{c.project.url()}}{{tool.options.mount_point}}/">View Wiki</a>
{% set wiki_found = True %}
{% endif %}
{% endfor %}
</div>
<div style="clear:both"></div>
<div class="grid-2">
<img src="{{ g.theme.app_icon_url('Git', 48) }}" alt="">
</div>
<div class="grid-13">
<h3>Code</h3>
<p>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.</p>
</div>
<div class="grid-4">
{% 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 %}
<a href="{{c.project.url()}}{{tool.options.mount_point}}/fork">Checkout repo</a><br>
<a href="{{c.project.url()}}{{tool.options.mount_point}}/">View source</a>
{% set code_found = True %}
{% endif %}
{% endfor %}
</div>
<div style="clear:both"></div>
<div class="grid-2">
<img src="{{ g.theme.app_icon_url('Tickets', 48) }}" alt="">
</div>
<div class="grid-13">
<h3>Tickets</h3>
<p>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.</p>
</div>
<div class="grid-4">
{% for tool in c.project.app_configs %}
{% if tool.tool_name == 'Tickets' and not tracker_found %}
<a href="{{c.project.url()}}{{tool.options.mount_point}}/new">Create Ticket</a><br>
<a href="{{c.project.url()}}{{tool.options.mount_point}}/milestones">Edit Milestones</a><br>
<a href="{{c.project.url()}}{{tool.options.mount_point}}/">View Tickets</a>
{% set tracker_found = True %}
{% endif %}
{% endfor %}
</div>
<div style="clear:both"></div>
<div class="grid-2">
<img src="{{ g.theme.app_icon_url('Discussion', 48) }}" alt="">
</div>
<div class="grid-13">
<h3>Forums</h3>
<p>To use the forums, create a couple of forums, post introductory messages, and check out the spam controll/post moderation options.</p>
</div>
<div class="grid-4">
{% for tool in c.project.app_configs %}
{% if tool.tool_name == 'Discussion' and not forum_found %}
<a href="{{c.project.url()}}{{tool.options.mount_point}}/?new_forum=True">Create Forum</a><br>
<a href="{{c.project.url()}}{{tool.options.mount_point}}/">View Forums</a>
{% set forum_found = True %}
{% endif %}
{% endfor %}
</div>
{% endblock %}