spacepaste

  1.  
  2. equinteros@gazelle:~/projects/NOVA-PROJECTS/HELIOS-TENDENCI/aea_helios/helios-server$ git diff
  3. diff --git a/helios/templates/base.html b/helios/templates/base.html
  4. index 075739f..2a1b306 100644
  5. --- a/helios/templates/base.html
  6. +++ b/helios/templates/base.html
  7. @@ -14,6 +14,7 @@
  8. -->
  9. <link rel="stylesheet" type="text/css" media="screen" href="/static/helios/main.css" />
  10. <link type="text/css" href="{{HELIOS_STATIC}}/css/ui-lightness/jquery-ui-1.8.1.custom.css" />
  11. + <link rel="stylesheet" href="/static/css/custom.css">
  12. {% endblock %}
  13. <script language="javascript" src="{{ HELIOS_STATIC }}/js/jquery-1.4.2.min.js"></script>
  14. diff --git a/helios/templates/election_new_2.html b/helios/templates/election_new_2.html
  15. index 16061c2..ea92f07 100644
  16. --- a/helios/templates/election_new_2.html
  17. +++ b/helios/templates/election_new_2.html
  18. @@ -89,4 +89,4 @@ $(document).ready(function() {
  19. otherwise you won't be able to tally your election.)
  20. </form>
  21. {% endifequal %}
  22. -{% endblock %}
  23. \ No newline at end of file
  24. +{% endblock %}
  25. diff --git a/server_ui/media/foundation-tweaks.css b/server_ui/media/foundation-tweaks.css
  26. index cc60e28..2c8bd59 100644
  27. --- a/server_ui/media/foundation-tweaks.css
  28. +++ b/server_ui/media/foundation-tweaks.css
  29. @@ -11,6 +11,11 @@ table.pretty th, td {
  30. padding: 0.3em;
  31. vertical-align: top;
  32. }
  33. +/*======== zOnny Additions ========*/
  34. +table.pretty tr:nth-child(9),
  35. +table.pretty tr:nth-child(10) {
  36. + display: none;
  37. +}
  38. .highlight-box {
  39. background:#eee;
  40. @@ -66,4 +71,4 @@ select {
  41. ul {
  42. margin-left: 20px;
  43. -}
  44. \ No newline at end of file
  45. +}
  46. diff --git a/server_ui/templates/base.html b/server_ui/templates/base.html
  47. index ac5f2d1..fa8c8b3 100644
  48. --- a/server_ui/templates/base.html
  49. +++ b/server_ui/templates/base.html
  50. @@ -9,6 +9,7 @@
  51. <link rel="stylesheet" href="/static/foundation/css/foundation.css">
  52. <link rel="stylesheet" href="/static/foundation-tweaks.css">
  53. + <link rel="stylesheet" href="/static/css/custom.css">
  54. {% if settings.DEBUG %}
  55. <script src="/static/foundation/js/vendor/custom.modernizr.js"></script>
  56. diff --git a/urls.py b/urls.py
  57. index d467499..10001d8 100644
  58. --- a/urls.py
  59. +++ b/urls.py
  60. @@ -15,6 +15,8 @@ urlpatterns = patterns(
  61. (r'static/auth/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/helios_auth/media'}),
  62. (r'static/helios/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/helios/media'}),
  63. (r'static/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/server_ui/media'}),
  64. +
  65. + #(r'static/(?P<path>.*)$', 'django.views.static.serve', {'document_root' : settings.ROOT_PATH + '/shared'}),
  66. (r'^', include('server_ui.urls')),
  67.