Parent: [8afec7] (diff)

Child: [d25d79] (diff)

Download this file

neighborhood_add_project.html    100 lines (98 with data), 4.1 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
98
99
<form action="{{action}}" method="POST">
<div class="welcome">
<div class="grid-9" style="text-align: right">
<label for="{{ widget.context_for(widget.fields.project_name)['id'] }}">
Project Name:
</label>
</div>
<div class="grid-8">{{widget.display_field(widget.fields.project_name)}}</div>
<div class="grid-6">&nbsp;</div>
<div class="grid-9" style="text-align: right">
<label for="{{ widget.context_for(widget.fields.project_unixname)['id'] }}">
URL: http://{{c.environ['HTTP_HOST']}}{{neighborhood.url()}}
</label>
</div>
<div class="grid-8">{{widget.display_field(widget.fields.project_unixname)}}<br>
<div id="name_availablity" style="display:none"></div></div>
<div class="grid-3"><input type="button" value="Suggest" id="suggest_project_name"></div>
{{widget.display_field(widget.fields.neighborhood)}}
{% if h.has_access(neighborhood, 'admin') %}
<div class="grid-9" style="text-align: right">
<label for="{{ widget.context_for(widget.fields.private_project)['id'] }}">
Private Project?
</label>
</div>
<div class="grid-1">
{{widget.display_field(widget.fields.private_project)}}
</div>
<div class="grid-7">
Neighborhood administrators can mark a project as being private. Private
projects will be unreadable to non-project members and will not show up in
search results.
</div>
<div class="grid-6">&nbsp;</div>
<div style="clear:both"></div>
{% endif %}
</div>
<div class="inner-row">
<div class="tool">
<div class="big_icon ui-icon-tool-Wiki"></div>
{{widget.display_field(widget.fields.Wiki)}}
<h1>Wikis</h1>
<p>
Documentation is key to your project and the wiki tool helps make it easy for anyone to contribute.
</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-Git"></div>
<h1>Code</h1>
<p>
SVN, Git and Mercurial will help you keep track of your changes.
</p>
<div class="checkbox-wrapper">
<span>{{widget.display_field(widget.fields.Git)}} Git</span>
<span>{{widget.display_field(widget.fields.Hg)}} Mercurial</span>
<span>{{widget.display_field(widget.fields.SVN)}} SVN</span>
</div>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-Tickets"></div>
{{widget.display_field(widget.fields.Tickets)}}
<h1>Tickets</h1>
<p>
Bugs, enhancements, tasks, etc., will help you plan and manage your development.
</p>
</div>
</div>
<div class="inner-row">
<div class="tool">
<div class="big_icon ui-icon-tool-Downloads"></div>
{{widget.display_field(widget.fields.Downloads)}}
<h1>Downloads</h1>
<p>
Use the largest free, managed, global mirror network to distribute your files.
</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-Stats"></div>
<h1>Stats</h1>
<p>
Follow the download trends that enable you to develop better software.
(Comes with Downloads)
</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-Discussion"></div>
{{widget.display_field(widget.fields.Discussion)}}
<h1>Forums</h1>
<p>
Collaborate with your community in your forums.
</p>
</div>
</div>
<div class="inner-row">
<input type="submit" value="Start" id="start">
</div>
{% if widget.antispam %}{% for fld in g.antispam.extra_fields() %}
{{fld}}{% endfor %}{% endif %}
</form>