Parent: [6a3c20] (diff)

Child: [ce5833] (diff)

Download this file

neighborhood_add_project.html    120 lines (117 with data), 5.9 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<form action="{{action}}" method="POST">
<div class="welcome">
<div class="grid-4" style="text-align: right; padding-top: 7px;">
<label for="{{ widget.context_for(widget.fields.project_name)['id'] }}">
Project Name
</label>
</div>
<div class="grid-10">{{widget.display_field(widget.fields.project_name)}}</div>
<div class="grid-9">&nbsp;</div>
<div style="clear:both">&nbsp;</div>
<div class="grid-4" style="text-align: right; padding-top: 7px;">
<label for="{{ widget.context_for(widget.fields.project_unixname)['id'] }}">
URL Name
</label>
</div>
<div class="grid-10">{{widget.display_field(widget.fields.project_unixname)}}
<br/><div id="project_url">http://{{c.environ['HTTP_HOST']}}{{neighborhood.url()}}<span id="url_fragment"></span></div>
</div>
<div class="grid-9" style="position:relative; overflow:visible">
<b id="error_icon" data-icon="!" class="allura" title="Caution">!</b>
<b id="success_icon" data-icon="2" class="allura" title="Check">&#x2713;</b>
<div id="name_availability" style="display:none"></div>
</div>
{{widget.display_field(widget.fields.neighborhood)}}
<div style="clear:both">&nbsp;</div>
</div>
{% if not neighborhood.project_template %}
<div class="inner-row">
<div class="tool">
<div class="big_icon ui-icon-tool-git"></div>
{{widget.display_field(widget.fields.Git)}}
<h1><label for="{{ widget.context_for(widget.fields.Git)['id'] }}">Git</label></h1>
<p>Git is a distributed version control system designed to
handle everything from small to very large projects with speed
and efficiency.</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-downloads"></div>
{{widget.display_field(widget.fields.Downloads)}}
<h1><label for="{{ widget.context_for(widget.fields.Downloads)['id'] }}">Downloads &amp; Stats</label></h1>
<p>Use the largest free, managed, global mirror network to
distribute your files, and follow the download trends that
enable you to develop better software.</p>
</div>
<div style="clear:both"></div>
</div>
<div class="inner-row">
<div class="tool">
<div class="big_icon ui-icon-tool-git"></div>
{{widget.display_field(widget.fields.SVN)}}
<h1><label for="{{ widget.context_for(widget.fields.SVN)['id'] }}">SVN</label></h1>
<p>Enterprise-class centralized version control for the masses.</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-wiki"></div>
{{widget.display_field(widget.fields.Wiki)}}
<h1><label for="{{ widget.context_for(widget.fields.Wiki)['id'] }}">Wiki</label></h1>
<p>Documentation is key to your project and the wiki tool
helps make it easy for anyone to contribute.</p>
</div>
<div style="clear:both"></div>
</div>
<div class="inner-row">
<div class="tool">
<div class="big_icon ui-icon-tool-git"></div>
{{widget.display_field(widget.fields.Hg)}}
<h1><label for="{{ widget.context_for(widget.fields.Hg)['id'] }}">Mercurial</label></h1>
<p>Mercurial is a distributed source control management tool that efficiently
handles projects of any size and offers an easy and intuitive
interface.</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-tickets"></div>
{{widget.display_field(widget.fields.Tickets)}}
<h1><label for="{{ widget.context_for(widget.fields.Tickets)['id'] }}">Tickets</label></h1>
<p>Bugs, enhancements, tasks, etc., will help you plan and
manage your development.</p>
</div>
<div style="clear:both"></div>
</div>
<div class="inner-row">
<div class="tool">
<div class="big_icon ui-icon-tool-blog"></div>
{{widget.display_field(widget.fields.Blog)}}
<h1><label for="{{ widget.context_for(widget.fields.Blog)['id'] }}">Blog</label></h1>
<p>Share exciting news and progress updates with your
community.</p>
</div>
<div class="tool">
<div class="big_icon ui-icon-tool-discussion"></div>
{{widget.display_field(widget.fields.Discussion)}}
<h1><label for="{{ widget.context_for(widget.fields.Discussion)['id'] }}">Forums</label></h1>
<p>Collaborate with your community in your forum.</p>
</div>
<div style="clear:both"></div>
</div>
{% endif %}
{% if h.has_access(neighborhood, 'admin') and not neighborhood.project_template %}
<div style="margin-top:20px">
<div class="grid-1" style="text-align: right">
{{widget.display_field(widget.fields.private_project)}}
</div>
<div class="grid-16">
<label for="{{ widget.context_for(widget.fields.private_project)['id'] }}">
Private? Private projects will be unreadable to non-project members and will
not show up in search results.
</label>
</div>
<div style="clear:both"></div>
</div>
{% endif %}
<div class="button-row">
<input type="submit" id="start" value="Create"> or <a href="/register-classic">Start a Classic Project</a>
</div>
{% if widget.antispam %}{% for fld in g.antispam.extra_fields() %}
{{fld}}{% endfor %}{% endif %}
</form>