History!
3 |{{::topic.title}}
4 |{{::topic.topic_number}}
5 |{{::topic.description|truncate:500}}
6 | 7 | 25 |├── data ├── __init__.py ├── dumpdata.sh ├── import_topics.sql ├── empty_topic_data.sql ├── refresh.sh ├── make_unique.py ├── fulltext.sql └── holygrail.yaml ├── sbirez ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── modules │ │ └── splitting.py │ │ ├── indextopics.py │ │ ├── importtopics.py │ │ ├── readworkflow.py │ │ └── getnaics.py ├── migrations │ ├── __init__.py │ ├── 0027_merge.py │ ├── 0034_merge.py │ ├── 0023_merge.py │ ├── 0026_merge.py │ ├── 0031_merge.py │ ├── 0033_merge.py │ ├── 0018_merge.py │ ├── 0021_auto_20150420_2018.py │ ├── 0002_auto_20150219_1951.py │ ├── 0029_auto_20150804_2055.py │ ├── 0030_element_report_text.py │ ├── 0032_element_report_question_number.py │ ├── 0026_auto_20150720_2156.py │ ├── 0003_auto_20150219_1959.py │ ├── 0019_auto_20150406_0018.py │ ├── 0016_auto_20150331_1737.py │ ├── 0033_auto_20150910_2059.py │ ├── 0027_auto_20150724_2048.py │ ├── 0028_auto_20150724_2049.py │ ├── 0022_auto_20150420_2019.py │ ├── 0012_auto_20150317_1646.py │ ├── 0021_auto_20150420_2048.py │ ├── 0024_auto_20150612_1611.py │ ├── 0017_auto_20150403_1944.py │ ├── 0004_auto_20150223_2159.py │ ├── 0007_auto_20150303_1801.py │ ├── 0008_auto_20150304_2134.py │ ├── 0013_auto_20150317_1907.py │ ├── 0030_auto_20150817_1927.py │ ├── 0020_auto_20150414_1920.py │ ├── 0015_auto_20150326_1735.py │ ├── 0006_auto_20150302_2037.py │ ├── 0032_auto_20150910_0836.py │ ├── 0015_auto_20150327_1426.py │ ├── 0031_auto_20150828_1751.py │ ├── 0009_auto_20150313_1659.py │ ├── 0011_auto_20150317_1630.py │ ├── 0005_auto_20150225_1935.py │ └── 0014_auto_20150319_1730.py ├── media │ └── deathstarplans.txt ├── static │ ├── js │ │ ├── README │ │ ├── controllers │ │ │ ├── proposal.js │ │ │ ├── landing.js │ │ │ ├── contact.js │ │ │ ├── history.js │ │ │ ├── notification.js │ │ │ ├── adminuser.js │ │ │ ├── documentList.js │ │ │ ├── savedOpps.js │ │ │ ├── reset.js │ │ │ ├── form.js │ │ │ ├── main.js │ │ │ ├── accountUser.js │ │ │ ├── topic.js │ │ │ ├── document.js │ │ │ ├── search.js │ │ │ ├── signin.js │ │ │ └── accountOrganization.js │ │ ├── directives │ │ │ ├── footer.js │ │ │ ├── backbutton.js │ │ │ ├── elements │ │ │ │ ├── group.js │ │ │ │ ├── lineitem.js │ │ │ │ ├── readonlytext.js │ │ │ │ ├── singlelineitem.js │ │ │ │ ├── dynamiclineitem.js │ │ │ │ ├── bool.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── text.js │ │ │ │ ├── calculated.js │ │ │ │ ├── str.js │ │ │ │ └── upload.js │ │ │ ├── topic.js │ │ │ ├── pagination.js │ │ │ └── jargon.js │ │ ├── services │ │ │ ├── authsvc.js │ │ │ ├── dialogsvc.js │ │ │ └── usersvc.js │ │ └── filters │ │ │ └── truncate.js │ ├── views │ │ └── partials │ │ │ ├── proposal.html │ │ │ ├── document.html │ │ │ ├── footer.html │ │ │ ├── appmain.html │ │ │ ├── elements │ │ │ ├── group.html │ │ │ ├── readonlytext.html │ │ │ ├── calculated.html │ │ │ ├── text.html │ │ │ ├── checkbox.html │ │ │ ├── str.html │ │ │ ├── bool.html │ │ │ ├── upload.html │ │ │ ├── singlelineitem.html │ │ │ ├── lineitem.html │ │ │ └── dynamiclineitem.html │ │ │ ├── history.html │ │ │ ├── proposal.details.html │ │ │ ├── reset.html │ │ │ ├── landing.html │ │ │ ├── main.html │ │ │ ├── header.html │ │ │ ├── postsignup.html │ │ │ ├── savedOpps.html │ │ │ ├── documentList.html │ │ │ ├── signin.html │ │ │ ├── topic.html │ │ │ ├── documentDetails.html │ │ │ ├── introMessage.html │ │ │ ├── search.html │ │ │ ├── accountUser.html │ │ │ ├── signup.html │ │ │ └── topicDetails.html │ ├── coverpage.pdf │ ├── images │ │ ├── png │ │ │ ├── cross.png │ │ │ ├── logo.png │ │ │ ├── search.png │ │ │ ├── checkmark.png │ │ │ ├── cross_red.png │ │ │ ├── checkmark_green.png │ │ │ └── checkbox-unchecked.png │ │ ├── svg │ │ │ ├── checkmark.svg │ │ │ ├── checkmark_green.svg │ │ │ ├── search.svg │ │ │ ├── cross.svg │ │ │ ├── cross_red.svg │ │ │ └── logo.svg │ │ └── icons.fallback.css │ └── css │ │ ├── ngdialog-theme-intromessage.css │ │ ├── ngdialog-theme-logout.css │ │ ├── ngdialog-theme-login.css │ │ └── reset.css ├── admin.py ├── templates │ ├── emails │ │ ├── submit_notification-subject.html │ │ ├── mock_submission-subject.html │ │ ├── submit_notification-body-text.html │ │ └── mock_submission-body-text.html │ ├── password_reset_confirm.html │ └── fragments │ │ └── password_reset_confirm_form.html ├── views.py ├── tests.py ├── templatetags │ ├── stringyesno.py │ └── money.py ├── fixtures │ ├── solicitation.json │ └── naics.json ├── permissions.py └── assets.py ├── Aptfile ├── afsbirez ├── __init__.py ├── settings │ ├── __init__.py │ ├── dev.py │ └── production.py ├── wsgi.py └── urls.py ├── chef ├── data_bags │ └── .gitkeep ├── roles │ ├── .gitkeep │ └── vagrant.rb ├── environments │ └── .gitkeep ├── nodes │ └── localhost.json ├── Gemfile ├── solo.rb └── Berksfile ├── .gitattributes ├── runtime.txt ├── requirements └── dev.txt ├── .bowerrc ├── .buildpacks ├── tests └── client │ ├── runner.html │ ├── .jshintrc │ └── spec │ ├── controllers │ ├── main.js │ ├── accountUser.js │ ├── account.js │ ├── documentList.js │ ├── proposal.js │ ├── topic.js │ ├── reset.js │ ├── savedopps.js │ └── accountOrganization.js │ └── services │ └── usersvc.js ├── manage.py ├── package.json ├── generate_fixtures.sh ├── .jshintrc ├── .editorconfig ├── .gitignore ├── .cfignore ├── manifest.yml ├── requirements.txt ├── bower.json ├── CONTRIBUTING.md ├── LICENSE.md ├── karma-e2e.conf.js ├── karma.conf.js └── .about.yml /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbirez/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | mdbtools 2 | -------------------------------------------------------------------------------- /afsbirez/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/data_bags/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/roles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /chef/environments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.4.3 2 | -------------------------------------------------------------------------------- /afsbirez/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbirez/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbirez/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbirez/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbirez/media/deathstarplans.txt: -------------------------------------------------------------------------------- 1 | Don't shoot the exhaust port! -------------------------------------------------------------------------------- /sbirez/static/js/README: -------------------------------------------------------------------------------- 1 | Place your javascript files here. 2 | -------------------------------------------------------------------------------- /sbirez/static/views/partials/proposal.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /sbirez/static/views/partials/document.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chef/nodes/localhost.json: -------------------------------------------------------------------------------- 1 | { 2 | "run_list": ["role[vagrant]"] 3 | } 4 | -------------------------------------------------------------------------------- /sbirez/static/views/partials/footer.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /data/dumpdata.sh: -------------------------------------------------------------------------------- 1 | ./manage.py dumpdata sbirez > sbirez/fixtures/alldata.json 2 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | django-extensions==1.5.2 2 | django-debug-toolbar==1.2.2 3 | -------------------------------------------------------------------------------- /sbirez/static/views/partials/appmain.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "sbirez/static/lib", 3 | "analytics": false 4 | } 5 | -------------------------------------------------------------------------------- /sbirez/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /sbirez/templates/emails/submit_notification-subject.html: -------------------------------------------------------------------------------- 1 | Your SBIR proposal has been submitted -------------------------------------------------------------------------------- /chef/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'knife-solo' 4 | gem 'berkshelf' 5 | -------------------------------------------------------------------------------- /sbirez/templates/emails/mock_submission-subject.html: -------------------------------------------------------------------------------- 1 | SBIR proposal submission: {{proposal.title}} 2 | -------------------------------------------------------------------------------- /sbirez/static/coverpage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/18F/afsbirez/master/sbirez/static/coverpage.pdf -------------------------------------------------------------------------------- /sbirez/static/views/partials/elements/group.html: -------------------------------------------------------------------------------- 1 | {{element.human}} 2 | -------------------------------------------------------------------------------- /sbirez/static/views/partials/history.html: -------------------------------------------------------------------------------- 1 |History!
3 |3 |
Before you can submit a proposal on a solicitation, you’ll need to tell us a little bit about your company. You can do that at any time by clicking My Company in the header.
5 | 12 |The Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) programs encourage domestic small businesses to engage in Federal Research/Research and Development with the potential for commercialization. This site contains the list of Air Force topics.
4 |Use the search form below to find projects that dovetail with the work that you do.
5 | 16 |You’ve not yet started a proposal.
6 |To get started, search for a topic (like "aircraft", "software", or "electrochemical") and click "Start a proposal" on a result that interests you.
7 | 18 |Documents
3 |You currently have {{docList.length}} documents.
4 || Name 8 | 9 | 10 | | 11 |Modified 12 | 13 | 14 | | 15 |Description | 16 |
|---|---|---|
| {{doc.name}} | 21 |{{doc.updated_at | date:'medium'}} | 22 |{{doc.description}} | 23 |
{{::topic.description|truncate:500}}
6 | 7 | 25 |{{data.name}}
3 | Download 4 | 22 |Password Required
4 | 27 |We couldn’t find any topics matching your search term.
17 |{{data.objective}}
21 |{{area.area}}
25 |{{data.description}}
29 |{{phaseObj.phase}}
30 |{{getKeywordList()}}
40 |